diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-04-22 13:44:05 -0700 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-04-22 13:44:05 -0700 |
commit | 44696667805343a2f60bdec25d8ab9ed90b5963c (patch) | |
tree | ef5223ce8eaeb3fd567ca0a09c2effbca0242c05 | |
parent | c15e024141727e5eed8056d3b2732f4f7553b2b4 (diff) | |
parent | 30f2999962ef411abc7c191e66b4c40ed5b86db5 (diff) |
Merge pull request #792 from fp7/master
Parameters as arguments to main
-rw-r--r-- | youtube_dl/__init__.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index bac359ac7..8ec7435ca 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -47,7 +47,7 @@ from .FileDownloader import * from .InfoExtractors import gen_extractors from .PostProcessor import * -def parseOpts(): +def parseOpts(arguments): def _readOptions(filename_bytes): try: optionf = open(filename_bytes) @@ -307,8 +307,8 @@ def parseOpts(): userConfFile = os.path.join(os.path.expanduser('~'), '.config', 'youtube-dl.conf') systemConf = _readOptions('/etc/youtube-dl.conf') userConf = _readOptions(userConfFile) - commandLineConf = sys.argv[1:] - argv = systemConf + userConf + commandLineConf + commandLineConf = sys.argv[1:] + argv = (systemConf + userConf + commandLineConf) if not arguments else arguments opts, args = parser.parse_args(argv) if opts.verbose: @@ -318,8 +318,8 @@ def parseOpts(): return parser, opts, args -def _real_main(): - parser, opts, args = parseOpts() +def _real_main(argv=None): + parser, opts, args = parseOpts(argv) # Open appropriate CookieJar if opts.cookiefile is None: @@ -553,9 +553,9 @@ def _real_main(): sys.exit(retcode) -def main(): +def main(argv=None): try: - _real_main() + _real_main(argv) except DownloadError: sys.exit(1) except SameFileError: |