summary refs log tree commit diff
diff options
context:
space:
mode:
authorFinn Petersen <4peterse@googlemail.com>2013-04-22 10:15:58 +0200
committerFinn Petersen <4peterse@googlemail.com>2013-04-22 10:15:58 +0200
commit30f2999962ef411abc7c191e66b4c40ed5b86db5 (patch)
treed38146e05f9a5ed2da795e1a260e4e0852f9dd35
parentb8ad4f02a2124c9e08570bfb2ab05f2024cb2fb7 (diff)
downloadyoutube-dl-30f2999962ef411abc7c191e66b4c40ed5b86db5.tar.gz
youtube-dl-30f2999962ef411abc7c191e66b4c40ed5b86db5.tar.xz
youtube-dl-30f2999962ef411abc7c191e66b4c40ed5b86db5.zip
Added parenthesis for explicity
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index b339427e8..87d3f222a 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -299,7 +299,7 @@ def parseOpts(arguments):
     systemConf = _readOptions('/etc/youtube-dl.conf')
     userConf = _readOptions(userConfFile)
     commandLineConf = sys.argv[1:] 
-    argv = systemConf + userConf + commandLineConf if not arguments else arguments
+    argv = (systemConf + userConf + commandLineConf) if not arguments else arguments
     opts, args = parser.parse_args(argv)
 
     if opts.verbose: