From 17f6df1e309efa9e2b7ad57069ccf061cd5da8db Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Tue, 28 Sep 2010 11:58:23 +0200 Subject: [PATCH] pyflakes fix --- weboob/tools/application/video_player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/tools/application/video_player.py b/weboob/tools/application/video_player.py index 80922bf5..b7b510c5 100644 --- a/weboob/tools/application/video_player.py +++ b/weboob/tools/application/video_player.py @@ -104,7 +104,7 @@ class VideoPlayer(): print ':: Streaming from %s' % video_url print ':: to %s %s' % (player_name, args) p1 = Popen(rtmp.split(), stdout=PIPE) - p2 = Popen([player_name, args], stdin=p1.stdout, stderr=PIPE) + Popen([player_name, args], stdin=p1.stdout, stderr=PIPE) def _find_in_path(self,path, filename): for i in path.split(':'):