diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-01-28 21:06:22 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-01-28 21:06:22 +0700 |
commit | 732fb3f8be6cca47c60b3befee83ee9b5002984d (patch) | |
tree | 4247d130dcd5b35a3142a3fc6af67eaa9b92326c /youtube_dl/options.py | |
parent | 008f247077027f10c947060d8f3bb886c9af6aa7 (diff) |
[options] Move --abort-on-unavailable-fragment to download section
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 0d2ce8d15..5e2936555 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -450,7 +450,7 @@ def parseOpts(overrideArguments=None): '--skip-unavailable-fragments', action='store_true', dest='skip_unavailable_fragments', default=True, help='Skip unavailable fragments (DASH and hlsnative only)') - general.add_option( + downloader.add_option( '--abort-on-unavailable-fragment', action='store_false', dest='skip_unavailable_fragments', help='Abort downloading when some fragment is not available') |