summaryrefslogtreecommitdiffstats
path: root/gallery_dl/option.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2025-01-12 21:27:05 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2025-01-12 21:27:05 -0500
commit0532a387ef5b7fcb4507a9b094dca37a5f635fe1 (patch)
tree81a387ac9407dff42faffd3a7ad29971ac23671d /gallery_dl/option.py
parent63b6119a44afe2be9563acffd72aa974bb9d7f17 (diff)
New upstream version 1.28.4.upstream/1.28.4
Diffstat (limited to 'gallery_dl/option.py')
-rw-r--r--gallery_dl/option.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gallery_dl/option.py b/gallery_dl/option.py
index a3f78e5..222679a 100644
--- a/gallery_dl/option.py
+++ b/gallery_dl/option.py
@@ -323,7 +323,7 @@ def build_parser():
input.add_argument(
"--no-input",
dest="input", nargs=0, action=ConfigConstAction, const=False,
- help=("Do not prompt for passwords/tokens"),
+ help="Do not prompt for passwords/tokens",
)
output = parser.add_argument_group("Output Options")
@@ -406,7 +406,7 @@ def build_parser():
)
output.add_argument(
"--list-extractors",
- dest="list_extractors", metavar="CATEGORIES", nargs="*",
+ dest="list_extractors", metavar="[CATEGORIES]", nargs="*",
help=("Print a list of extractor classes "
"with description, (sub)category and example URL"),
)
@@ -430,12 +430,12 @@ def build_parser():
output.add_argument(
"--print-traffic",
dest="print_traffic", action="store_true",
- help=("Display sent and read HTTP traffic"),
+ help="Display sent and read HTTP traffic",
)
output.add_argument(
"--no-colors",
dest="colors", action="store_false",
- help=("Do not emit ANSI color codes in output"),
+ help="Do not emit ANSI color codes in output",
)
networking = parser.add_argument_group("Networking Options")