From b5da81cd25a3fa2a6dec0a0a70a5bf06f23c1d6c Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Mon, 9 Apr 2012 00:32:45 +0200 Subject: [PATCH] Forgot a space between the output filename and the rest of the arguments --- svtplay-dl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/svtplay-dl b/svtplay-dl index 608a342..213429e 100755 --- a/svtplay-dl +++ b/svtplay-dl @@ -16,7 +16,7 @@ from optparse import OptionParser import xml.etree.ElementTree as ET import shlex -__version__ = "0.7.2012.04.08" +__version__ = "0.7.2012.04.09" class Common(object): logtosderr = False @@ -82,7 +82,7 @@ class Common(object): output = output + "." + extension.group(1) else: output = output + extension.group(1) - args = args + "-o %s" % output + args = args + " -o %s" % output if self.silent or output == "-": args = "%s -q" % args rtmpdump = "rtmpdump -r %s %s %s" % (url, args, other)