From 9ae5fdae96c776fa3bc88c9ea659b9f9d3318813 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Tue, 7 Apr 2015 22:36:39 +0200 Subject: [config] webinterface -> webui --- pyload/Core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyload/Core.py') 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): -- cgit v1.2.3