summaryrefslogtreecommitdiffstats
path: root/gallery_dl/option.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/option.py')
-rw-r--r--gallery_dl/option.py19
1 files changed, 10 insertions, 9 deletions
diff --git a/gallery_dl/option.py b/gallery_dl/option.py
index 91e9169..32cac79 100644
--- a/gallery_dl/option.py
+++ b/gallery_dl/option.py
@@ -325,7 +325,7 @@ def build_parser():
configuration.add_argument(
"--ignore-config",
dest="load_config", action="store_false",
- help="Do not read the default configuration files",
+ help="Do not read default configuration files",
)
authentication = parser.add_argument_group("Authentication Options")
@@ -349,7 +349,7 @@ def build_parser():
selection.add_argument(
"--download-archive",
dest="archive", metavar="FILE", action=ConfigAction,
- help=("Record all downloaded files in the archive file and "
+ help=("Record all downloaded or skipped files in FILE and "
"skip downloading any file already in it"),
)
selection.add_argument(
@@ -367,19 +367,20 @@ def build_parser():
selection.add_argument(
"--range",
dest="image-range", metavar="RANGE", action=ConfigAction,
- help=("Index-range(s) specifying which images to download. "
- "For example '5-10' or '1,3-5,10-'"),
+ help=("Index range(s) specifying which files to download. "
+ "These can be either a constant value, range, or slice "
+ "(e.g. '5', '8-20', or '1:24:3')"),
)
selection.add_argument(
"--chapter-range",
dest="chapter-range", metavar="RANGE", action=ConfigAction,
- help=("Like '--range', but applies to manga-chapters "
+ help=("Like '--range', but applies to manga chapters "
"and other delegated URLs"),
)
selection.add_argument(
"--filter",
dest="image-filter", metavar="EXPR", action=ConfigAction,
- help=("Python expression controlling which images to download. "
+ help=("Python expression controlling which files to download. "
"Files for which the expression evaluates to False are ignored. "
"Available keys are the filename-specific ones listed by '-K'. "
"Example: --filter \"image_width >= 1000 and "
@@ -388,7 +389,7 @@ def build_parser():
selection.add_argument(
"--chapter-filter",
dest="chapter-filter", metavar="EXPR", action=ConfigAction,
- help=("Like '--filter', but applies to manga-chapters "
+ help=("Like '--filter', but applies to manga chapters "
"and other delegated URLs"),
)
@@ -472,7 +473,7 @@ def build_parser():
dest="postprocessors", metavar="CMD",
action=AppendCommandAction, const={"name": "exec"},
help=("Execute CMD for each downloaded file. "
- "Example: --exec 'convert {} {}.png && rm {}'"),
+ "Example: --exec \"convert {} {}.png && rm {}\""),
)
postprocessor.add_argument(
"--exec-after",
@@ -480,7 +481,7 @@ def build_parser():
action=AppendCommandAction, const={
"name": "exec", "event": "finalize"},
help=("Execute CMD after all files were downloaded successfully. "
- "Example: --exec-after 'cd {} && convert * ../doc.pdf'"),
+ "Example: --exec-after \"cd {} && convert * ../doc.pdf\""),
)
postprocessor.add_argument(
"-P", "--postprocessor",