summaryrefslogtreecommitdiffstats
path: root/pyload/Core.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-07 22:36:39 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-07 22:36:39 +0200
commit9ae5fdae96c776fa3bc88c9ea659b9f9d3318813 (patch)
tree817b2798b96cb339c4b504d16bf350507a5f2cbd /pyload/Core.py
parent[Lib] send2trash (diff)
downloadpyload-9ae5fdae96c776fa3bc88c9ea659b9f9d3318813.tar.xz
[config] webinterface -> webui
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):