From: Finn Petersen <4peterse@googlemail.com> Date: Mon, 22 Apr 2013 08:15:58 +0000 (+0200) Subject: Added parenthesis for explicity X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=30f2999962ef411abc7c191e66b4c40ed5b86db5;hp=-c;p=youtube-dl Added parenthesis for explicity --- 30f2999962ef411abc7c191e66b4c40ed5b86db5 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: