From eb8e9fe2d062307991bfd847ea642e15c006f2a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=3D=3FUTF-8=3Fq=3FSergey=3D20M=3DE2=3D80=3DA4=3F=3D?= Date: Mon, 31 May 2021 23:27:01 +0200 Subject: [PATCH] [options] Fix thumbnail option group name (closes #29042) --- haruhi_dl/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haruhi_dl/options.py b/haruhi_dl/options.py index cae7d5c97..afc261414 100644 --- a/haruhi_dl/options.py +++ b/haruhi_dl/options.py @@ -804,7 +804,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,