summaryrefslogtreecommitdiffstats
path: root/pyload/Core.py
diff options
context:
space:
mode:
authorGravatar ardi69 <armin@diedering.de> 2015-04-08 19:43:38 +0200
committerGravatar ardi69 <armin@diedering.de> 2015-04-08 19:43:38 +0200
commitd0bdc98283ab14d97632ded3bcfb62589e482e10 (patch)
tree7754dbf5d69bab70d5f70976d625b54204cb1255 /pyload/Core.py
parentfix gui (diff)
parent[README] Update (2) (diff)
downloadpyload-d0bdc98283ab14d97632ded3bcfb62589e482e10.tar.xz
Merge pull request #1 from vuolter/0.4.10
ubdate from master
Diffstat (limited to 'pyload/Core.py')
-rwxr-xr-xpyload/Core.py4
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):