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

Automatically change working directory.

parent 2902f8df
Branches
Tags
No related merge requests found
......@@ -20,7 +20,8 @@
""" GUI Interface for Wheeler Lab DStat """
import sys
import sys,os
try:
import pygtk
pygtk.require('2.0')
......@@ -38,6 +39,8 @@ except ImportError:
print('gobject not available')
sys.exit(1)
os.chdir(os.path.dirname(sys.argv[0]))
import interface.save as save
import dstat_comm as comm
import interface.exp_window as exp_window
......
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