Skip to content

Commit

Permalink
Fix even stupider error
Browse files Browse the repository at this point in the history
  • Loading branch information
kangalio committed Oct 10, 2019
1 parent 2e54c9e commit 1b9dbdf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ class ScrollArea(QScrollArea):
def wheelEvent(self, event):
pass

# Fields: etterna_xml, canvas, button_load_xml, button_load_replays, window
class Application():
etterna_xml = None
replays_dir = None
plotter = None

def __init__(self):
# Construct app, root widget and layout
Expand Down Expand Up @@ -120,11 +120,11 @@ def mark_currently_loaded(self, button):
button.setText(current_text + " [currently loaded]")

def try_find_etterna_xml(self):
path_maybe = "/home/kangalioo/.etterna/Save/LocalProfiles/00000000/Etterna.xml"
path_maybe = "/home/kangalioo/.etterna/Save/LocalProfiles/00000000/Etterna.xmlfgf"
if os.path.exists(path_maybe): self.etterna_xml = path_maybe

def try_find_replays(self):
path_maybe = "/home/kangalioo/.etterna/Save/ReplaysV2"
path_maybe = "/home/kangalioo/.etterna/Save/ReplaysV2dfg"
if os.path.exists(path_maybe): self.replays_dir = path_maybe

def try_choose_etterna_xml(self):
Expand Down

0 comments on commit 1b9dbdf

Please sign in to comment.