Fixed metavars to be consistent, #645

This commit is contained in:
Rhet Turnbull
2022-05-03 06:34:19 -07:00
parent f42bee84c0
commit e9bbfeca52
4 changed files with 8 additions and 11 deletions

View File

@@ -92,7 +92,7 @@ VERSION_CHECK_OPTION = click.option("--no-version-check", required=False, is_fla
DB_OPTION = click.option(
"--db",
required=False,
metavar="<Photos database path>",
metavar="PHOTOS_LIBRARY_PATH",
default=None,
help=(
"Specify Photos database path. "

View File

@@ -505,7 +505,7 @@ from .verbose import get_verbose_console, time_stamp, verbose_print
)
@click.option(
"--report",
metavar="<path to export report>",
metavar="REPORT_FILE",
help="Write a CSV formatted report of all files that were exported.",
type=click.Path(),
)
@@ -600,7 +600,7 @@ from .verbose import get_verbose_console, time_stamp, verbose_print
@click.option(
"--load-config",
required=False,
metavar="<config file path>",
metavar="CONFIG_FILE",
default=None,
help=(
"Load options from file as written with --save-config. "
@@ -615,7 +615,7 @@ from .verbose import get_verbose_console, time_stamp, verbose_print
@click.option(
"--save-config",
required=False,
metavar="<config file path>",
metavar="CONFIG_FILE",
default=None,
help="Save options to file for use with --load-config. File format is TOML. "
"See also --config-only.",

Binary file not shown.