mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 13:41:15 -07:00
Change webstart failure error message
This commit is contained in:
parent
91a18e1a92
commit
9baecb0a41
1 changed files with 2 additions and 2 deletions
|
@ -263,8 +263,8 @@ def initialize(options):
|
||||||
cherrypy.engine.signals.subscribe()
|
cherrypy.engine.signals.subscribe()
|
||||||
cherrypy.engine.start()
|
cherrypy.engine.start()
|
||||||
cherrypy.engine.block()
|
cherrypy.engine.block()
|
||||||
except IOError:
|
except IOError as e:
|
||||||
logger.error("Tautulli WebStart :: Failed to start on port: %i. Is something else running?" % options['http_port'])
|
logger.error("Tautulli WebStart :: Failed to start Tautulli: %s", e)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
cherrypy.server.wait()
|
cherrypy.server.wait()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue