Skip to content
Snippets Groups Projects
Commit 4395bd02 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Fixed bug preventing launching without a path.

parent 6b8a8b78
No related merge requests found
......@@ -39,7 +39,7 @@ except ImportError:
print('gobject not available')
sys.exit(1)
os.chdir(os.path.dirname(sys.argv[0]))
os.chdir(os.path.dirname(os.path.abspath(sys.argv[0])))
import interface.save as save
import dstat_comm as comm
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment