From 9baecb0a41df540d283076b80e7e0143dba13fb2 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sun, 2 Aug 2020 10:29:57 -0700 Subject: [PATCH] Change webstart failure error message --- plexpy/webstart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plexpy/webstart.py b/plexpy/webstart.py index a4b5ab69..1818d4f8 100644 --- a/plexpy/webstart.py +++ b/plexpy/webstart.py @@ -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()