diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-10-25 00:30:57 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-10-25 00:30:57 +0200 |
commit | 63e0be341571450a2016a29f917e521b70d36020 (patch) | |
tree | 81ef589fb9535480ee904fc66ef6342454437295 /youtube_dl/__init__.py | |
parent | c64ed2a310542a46e79e8969df32d14a5403e53d (diff) |
New option --dump-single-json (#4003)
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r-- | youtube_dl/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 6b0efe059..c8bcc6e46 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -284,7 +284,7 @@ def _real_main(argv=None): u' file! Use "{0}.%(ext)s" instead of "{0}" as the output' u' template'.format(outtmpl)) - any_printing = opts.geturl or opts.gettitle or opts.getid or opts.getthumbnail or opts.getdescription or opts.getfilename or opts.getformat or opts.getduration or opts.dumpjson + any_printing = opts.geturl or opts.gettitle or opts.getid or opts.getthumbnail or opts.getdescription or opts.getfilename or opts.getformat or opts.getduration or opts.dumpjson or opts.dump_single_json download_archive_fn = os.path.expanduser(opts.download_archive) if opts.download_archive is not None else opts.download_archive ydl_opts = { @@ -304,6 +304,7 @@ def _real_main(argv=None): 'forcefilename': opts.getfilename, 'forceformat': opts.getformat, 'forcejson': opts.dumpjson, + 'dump_single_json': opts.dump_single_json, 'simulate': opts.simulate, 'skip_download': (opts.skip_download or opts.simulate or any_printing), 'format': opts.format, |