From 724a18873b7edc90fede8416bbcb4e430015eaef Mon Sep 17 00:00:00 2001 From: Bezleputh Date: Wed, 15 Oct 2014 11:00:24 +0200 Subject: [PATCH] [videoob] set non verbose mode for wget when downloading m3u8 (fix #1643) --- weboob/applications/videoob/videoob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/applications/videoob/videoob.py b/weboob/applications/videoob/videoob.py index 95b26c13..eec2442c 100644 --- a/weboob/applications/videoob/videoob.py +++ b/weboob/applications/videoob/videoob.py @@ -109,7 +109,7 @@ class Videoob(ReplApplication): line = u'%s/%s' % (baseurl, line) content += (line,) - args = ('wget',) + content + ('-O', dest) + args = ('wget', '-nv',) + content + ('-O', dest) else: if check_exec('wget'): args = ('wget', '-c', video.url, '-O', dest)