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)