diff options
Diffstat (limited to 'pyload/Core.py')
-rwxr-xr-x | pyload/Core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/Core.py b/pyload/Core.py index 9588c9485..0cc10df6e 100755 --- a/pyload/Core.py +++ b/pyload/Core.py @@ -444,7 +444,7 @@ class Core(object): self.db.manager = self.files #ugly? def init_webserver(self): - if self.config['webinterface']['activated']: + if self.config['webui']['activated']: self.webserver = WebServer(self) self.webserver.start() @@ -547,7 +547,7 @@ class Core(object): def shutdown(self): self.log.info(_("shutting down...")) try: - if self.config['webinterface']['activated'] and hasattr(self, "webserver"): + if self.config['webui']['activated'] and hasattr(self, "webserver"): self.webserver.quit() for thread in list(self.threadManager.threads): |