diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-25 19:30:08 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-25 19:30:08 +0200 |
commit | b31a5a67e45ad9a274c668efa7424ddb80769fec (patch) | |
tree | 79e40e3dd2e65d1a4fb93e1e23a3d650404fcc45 /interfaces/pyLoadCli.py | |
parent | new icon, fixes (diff) | |
download | pyload-b31a5a67e45ad9a274c668efa7424ddb80769fec.tar.xz |
icon fixes
Diffstat (limited to 'interfaces/pyLoadCli.py')
-rwxr-xr-x | interfaces/pyLoadCli.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/interfaces/pyLoadCli.py b/interfaces/pyLoadCli.py index aaeb6a4fa..fc8af9b86 100755 --- a/interfaces/pyLoadCli.py +++ b/interfaces/pyLoadCli.py @@ -34,7 +34,10 @@ from time import sleep import xmlrpclib from traceback import print_exc -sys.path.append(join(dirname(abspath(__file__)), "..")) +try: + sys.path.append(join(dirname(abspath(__file__)), "..")) +except: + pass from module import InitHomeDir from module.ConfigParser import ConfigParser |