diff --git a/weboob/applications/videoob/videoob.py b/weboob/applications/videoob/videoob.py index 721db78c57565d5f4d231fe9ed4ea6181dfa7a41..353b22223cfd0e87ee617858d3b4d15fe4f518cc 100644 --- a/weboob/applications/videoob/videoob.py +++ b/weboob/applications/videoob/videoob.py @@ -116,11 +116,11 @@ def check_exec(executable): elif video.url.startswith('mms'): if not check_exec('mimms'): return 1 - args = ('mimms', video.url, dest) + args = ('mimms', '-r', video.url, dest) else: if not check_exec('wget'): return 1 - args = ('wget', video.url, '-O', dest) + args = ('wget', '-c', video.url, '-O', dest) os.spawnlp(os.P_WAIT, args[0], *args)