From 661a407f72ea016fea657990e175744953b94fe3 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Fri, 8 Mar 2013 16:45:19 -0500 Subject: [PATCH] CC-5016: Allow user control for webstream metadata format -fixed --- python_apps/pypo/pypopush.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python_apps/pypo/pypopush.py b/python_apps/pypo/pypopush.py index 380992553..cd552cf52 100644 --- a/python_apps/pypo/pypopush.py +++ b/python_apps/pypo/pypopush.py @@ -508,6 +508,11 @@ class PypoPush(Thread): self.logger.debug(msg) tn.write(msg) + show_name = media_item['show_name'] + msg = 'vars.show_name %s\n' % show_name.encode('utf-8') + tn.write(msg) + self.logger.debug(msg) + tn.write("exit\n") self.logger.debug(tn.read_all())