From b3981a562735d9fd1dc2ab4ca0e50df41df39989 Mon Sep 17 00:00:00 2001 From: Tomasz Fluxid Kowalczyk Date: Sat, 28 Jan 2012 19:57:14 +0100 Subject: [PATCH] Remove prints --- syncplay/players/mplayer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/syncplay/players/mplayer.py b/syncplay/players/mplayer.py index b196b25..b8ed983 100644 --- a/syncplay/players/mplayer.py +++ b/syncplay/players/mplayer.py @@ -30,14 +30,12 @@ class MplayerProtocol(LineProcessProtocol): if not line.startswith('ANS_'): sys.stdout.write(line+'\n') return - print line m = RE_ANSWER.match(line) if not m: return name, value = m.group(1).lower(), m.group(2) handler = getattr(self, 'answer_' + name, None) - print value if handler: handler(value)