diff options
author | 2013-09-29 13:03:17 +0200 | |
---|---|---|
committer | 2013-09-29 13:03:17 +0200 | |
commit | 6a997661dc5c259f844531382a90a4ca120f1233 (patch) | |
tree | 085a76d4bac208963649a62f9393e0c0b049e869 /pyload/Core.py | |
parent | rewritten decrypter and info fetching thread (diff) | |
download | pyload-6a997661dc5c259f844531382a90a4ca120f1233.tar.xz |
basics for web setup
Diffstat (limited to 'pyload/Core.py')
-rw-r--r-- | pyload/Core.py | 6 |
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) |