diff options
author | 2012-06-03 17:45:10 +0200 | |
---|---|---|
committer | 2012-06-03 17:45:10 +0200 | |
commit | 0d2d6daef850ac6bcc7fafccd230e52d2a862c2c (patch) | |
tree | 73e36baba63e4c0895149bab9fe698d32f405828 /pyLoadCore.py | |
parent | small typo fixes and TODOs (diff) | |
download | pyload-0d2d6daef850ac6bcc7fafccd230e52d2a862c2c.tar.xz |
updates for database + api
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index ac9fb0133..ce87a4c62 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -40,9 +40,9 @@ import subprocess subprocess.__doc__ = None # the module with the largest doc we are using from module import InitHomeDir -from module.plugins.AccountManager import AccountManager +from module.AccountManager import AccountManager from module.config.ConfigParser import ConfigParser -from module.plugins.PluginManager import PluginManager +from module.PluginManager import PluginManager from module.interaction.EventManager import EventManager from module.network.RequestFactory import RequestFactory from module.web.ServerThread import WebServer @@ -321,7 +321,7 @@ class Core(object): self.remote &= self.config['remote']['activated'] pid = self.isAlreadyRunning() - # dont exit when in test runner + # don't exit when in test runner if pid and not tests: print _("pyLoad already running with pid %s") % pid exit() |