summaryrefslogtreecommitdiffstats
path: root/module/web/WebServer.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/WebServer.py')
-rw-r--r--module/web/WebServer.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/module/web/WebServer.py b/module/web/WebServer.py
index 5497439da..8cef0de2f 100644
--- a/module/web/WebServer.py
+++ b/module/web/WebServer.py
@@ -283,4 +283,8 @@ class WebServer(threading.Thread):
def run(self):
self.core.logger.info("Starting Webinterface on %s port %s" % (self.core.config['webinterface']['listenaddr'],self.core.config['webinterface']['port']))
- run(host=self.core.config['webinterface']['listenaddr'], port=int(self.core.config['webinterface']['port']), quiet=True)
+ try:
+ run(host=self.core.config['webinterface']['listenaddr'], port=int(self.core.config['webinterface']['port']), quiet=True)
+ except:
+ self.core.logger.error("Failed starting webserver, no webinterface available: Can't create socket")
+ exit()