diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-05 23:48:17 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-05 23:48:17 +0200 |
commit | c6bae348fa3c5f40d67e2076e4c1ceee42a3bc4b (patch) | |
tree | fa1b8009d027a20d52ea67874ab38a919d2a232e /pyLoadCore.py | |
parent | MU fix + others (diff) | |
download | pyload-c6bae348fa3c5f40d67e2076e4c1ceee42a3bc4b.tar.xz |
gui fix, plugin with no main function fix
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index c1c1f8fbb..30468bac2 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -416,7 +416,7 @@ class Core(object): def shutdown(self): self.log.info(_("shutting down...")) try: - if self.config['webinterface']['activated']: + if self.config['webinterface']['activated'] and hasattr(self, "webserver"): self.webserver.quit() #self.webserver.join() for thread in self.threadManager.threads: |