mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
Forgot a space between the output filename and the rest of the arguments
This commit is contained in:
parent
1b28c3bf65
commit
b5da81cd25
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user