commit: 6423d7054eb2a73a1557c8531f631330e6d7e084
parent eb5080286a8882eedbb77d1a8cd72f1c85b75737
Author: Sergey M․ <dstftw@gmail.com>
Date: Sun, 16 May 2021 21:34:10 +0700
[options] Fix thumbnail option group name (closes #29042)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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,