From 91996c91bc95f433fb55e2363d2cf73e2e80039f Mon Sep 17 00:00:00 2001 From: Keoni Mahelona Date: Mon, 9 Mar 2020 15:05:27 +1300 Subject: [PATCH] Remove double encode which caused webstream playout to break --- python_apps/pypo/pypo/telnetliquidsoap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/pypo/telnetliquidsoap.py b/python_apps/pypo/pypo/telnetliquidsoap.py index 146bdc971..8566c7001 100644 --- a/python_apps/pypo/pypo/telnetliquidsoap.py +++ b/python_apps/pypo/pypo/telnetliquidsoap.py @@ -201,7 +201,7 @@ class TelnetLiquidsoap: self.logger.debug(msg) tn.write(msg.encode('utf-8')) - msg = 'http.restart %s\n' % media_item['uri'].encode('latin-1') + msg = 'http.restart %s\n' % media_item['uri'] self.logger.debug(msg) tn.write(msg.encode('utf-8'))