From 1f5f5057bf3553ce2516b7d9f2823790aa496a2b Mon Sep 17 00:00:00 2001 From: James Date: Wed, 11 Apr 2012 16:20:27 -0400 Subject: [PATCH] CC-3430: Live Stream: Admin should be able to kick out the source connection - fixed --- python_apps/pypo/pypofetch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/pypofetch.py b/python_apps/pypo/pypofetch.py index cbe21b5dd..b4e672996 100644 --- a/python_apps/pypo/pypofetch.py +++ b/python_apps/pypo/pypofetch.py @@ -90,7 +90,7 @@ class PypoFetch(Thread): self.switch_source(self.logger, self.telnet_lock, m['sourcename'], m['status']) elif command == 'disconnect_source': self.logger.info("disconnect_on_source show command received...") - self.disconnect_source(self.logger, self.telnet.lock, m['sourcename']) + self.disconnect_source(self.logger, self.telnet_lock, m['sourcename']) except Exception, e: import traceback top = traceback.format_exc()