Change webstart failure error message

This commit is contained in:
JonnyWong16 2020-08-02 10:29:57 -07:00
parent 91a18e1a92
commit 9baecb0a41
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -263,8 +263,8 @@ def initialize(options):
cherrypy.engine.signals.subscribe()
cherrypy.engine.start()
cherrypy.engine.block()
except IOError:
logger.error("Tautulli WebStart :: Failed to start on port: %i. Is something else running?" % options['http_port'])
except IOError as e:
logger.error("Tautulli WebStart :: Failed to start Tautulli: %s", e)
sys.exit(1)
cherrypy.server.wait()