mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
use double quotes for --help examples
This commit is contained in:
parent
dfe4f00ca2
commit
6f6af36cad
@ -473,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",
|
||||
@ -481,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",
|
||||
|
Loading…
Reference in New Issue
Block a user