mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Remove unicode from websocket logger error
This commit is contained in:
parent
24ac34d5e2
commit
35914b9a48
1 changed files with 2 additions and 2 deletions
|
@ -162,7 +162,7 @@ def run():
|
||||||
logger.info(u"Tautulli WebSocket :: Ready")
|
logger.info(u"Tautulli WebSocket :: Ready")
|
||||||
plexpy.WS_CONNECTED = True
|
plexpy.WS_CONNECTED = True
|
||||||
except (websocket.WebSocketException, IOError, Exception) as e:
|
except (websocket.WebSocketException, IOError, Exception) as e:
|
||||||
logger.error(u"Tautulli WebSocket :: %s." % e)
|
logger.error("Tautulli WebSocket :: %s." % e)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
shutdown()
|
shutdown()
|
||||||
|
@ -172,7 +172,7 @@ def run():
|
||||||
if ws_shutdown:
|
if ws_shutdown:
|
||||||
break
|
break
|
||||||
|
|
||||||
logger.error(u"Tautulli WebSocket :: %s." % e)
|
logger.error("Tautulli WebSocket :: %s." % e)
|
||||||
shutdown()
|
shutdown()
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue