Skip to content

Commit

Permalink
Fixed path bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomasedv committed Jul 20, 2019
1 parent 20211a8 commit c0b714d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def main():
application_path = os.path.dirname(sys.executable)
else:
application_path = os.path.dirname(__file__)
os.chdir(os.path.dirname(os.path.realpath(application_path)))
os.chdir(os.path.realpath(application_path))

app = QApplication(sys.argv)
program = GUI()
Expand Down

0 comments on commit c0b714d

Please sign in to comment.