summaryrefslogtreecommitdiffstats
path: root/pyload/Core.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-09-29 13:03:17 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-09-29 13:03:17 +0200
commit6a997661dc5c259f844531382a90a4ca120f1233 (patch)
tree085a76d4bac208963649a62f9393e0c0b049e869 /pyload/Core.py
parentrewritten decrypter and info fetching thread (diff)
downloadpyload-6a997661dc5c259f844531382a90a4ca120f1233.tar.xz
basics for web setup
Diffstat (limited to 'pyload/Core.py')
-rw-r--r--pyload/Core.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/Core.py b/pyload/Core.py
index f97cfcf3b..5e083a14e 100644
--- a/pyload/Core.py
+++ b/pyload/Core.py
@@ -120,21 +120,21 @@ class Core(object):
elif option in ("-d", "--debug"):
self.doDebug = True
elif option in ("-u", "--user"):
- from Setup import Setup
+ from setup.Setup import Setup
self.config = ConfigParser()
s = Setup(pypath, self.config)
s.set_user()
exit()
elif option in ("-s", "--setup"):
- from Setup import Setup
+ from setup.Setup import Setup
self.config = ConfigParser()
s = Setup(pypath, self.config)
s.start()
exit()
elif option == "--changedir":
- from Setup import Setup
+ from setup.Setup import Setup
self.config = ConfigParser()
s = Setup(pypath, self.config)