diff options
author | Sergey M․ <dstftw@gmail.com> | 2021-05-16 21:34:10 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2021-05-16 21:34:10 +0700 |
commit | 6423d7054eb2a73a1557c8531f631330e6d7e084 (patch) | |
tree | 9222c4cecfbf02811097cad275477bd64a154eba | |
parent | eb5080286a8882eedbb77d1a8cd72f1c85b75737 (diff) |
[options] Fix thumbnail option group name (closes #29042)
-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 241cf110f..0a0641bd4 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -768,7 +768,7 @@ def parseOpts(overrideArguments=None): action='store_true', dest='rm_cachedir', help='Delete all filesystem cache files') - thumbnail = optparse.OptionGroup(parser, 'Thumbnail images') + thumbnail = optparse.OptionGroup(parser, 'Thumbnail Options') thumbnail.add_option( '--write-thumbnail', action='store_true', dest='writethumbnail', default=False, |