about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2021-05-16 21:34:10 +0700
committerSergey M․ <dstftw@gmail.com>2021-05-16 21:34:10 +0700
commit6423d7054eb2a73a1557c8531f631330e6d7e084 (patch)
tree9222c4cecfbf02811097cad275477bd64a154eba
parenteb5080286a8882eedbb77d1a8cd72f1c85b75737 (diff)
downloadyoutube-dl-6423d7054eb2a73a1557c8531f631330e6d7e084.tar.gz
youtube-dl-6423d7054eb2a73a1557c8531f631330e6d7e084.tar.xz
youtube-dl-6423d7054eb2a73a1557c8531f631330e6d7e084.zip
[options] Fix thumbnail option group name (closes #29042)
-rw-r--r--youtube_dl/options.py2
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,