From 9ee04cb8864f4da3242b6a90af7e0e63820f276b Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 21 May 2019 01:31:21 +0200 Subject: [PATCH] argparser: always use REPOSITORY in metavar also: use more consistent help phrasing. --- src/borg/archiver.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/borg/archiver.py b/src/borg/archiver.py index b506f788d..dd36de39d 100644 --- a/src/borg/archiver.py +++ b/src/borg/archiver.py @@ -2821,7 +2821,7 @@ class Archiver: help='mount repository') subparser.set_defaults(func=self.do_mount) subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', type=location_validator(), - help='repository/archive to mount') + help='repository or archive to mount') subparser.add_argument('mountpoint', metavar='MOUNTPOINT', type=str, help='where to mount filesystem') subparser.add_argument('-f', '--foreground', dest='foreground', @@ -3567,9 +3567,9 @@ class Archiver: 'use ``--force --force`` in case ``--force`` does not work.') subparser.add_argument('--save-space', dest='save_space', action='store_true', help='work slower, but using less space') - subparser.add_argument('location', metavar='TARGET', nargs='?', default='', + subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', nargs='?', default='', type=location_validator(), - help='archive or repository to delete') + help='repository or archive to delete') subparser.add_argument('archives', metavar='ARCHIVE', nargs='*', help='archives to delete') define_archive_filters_group(subparser) @@ -3618,7 +3618,7 @@ class Archiver: 'A "bpath" key is therefore not available.') subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', nargs='?', default='', type=location_validator(), - help='repository/archive to list contents of') + help='repository or archive to list contents of') subparser.add_argument('paths', metavar='PATH', nargs='*', type=str, help='paths to list; patterns are supported') define_archive_filters_group(subparser) @@ -3664,7 +3664,7 @@ class Archiver: subparser.set_defaults(func=self.do_info) subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', nargs='?', default='', type=location_validator(), - help='archive or repository to display information about') + help='repository or archive to display information about') subparser.add_argument('--json', action='store_true', help='format output as JSON') define_archive_filters_group(subparser) @@ -3972,7 +3972,7 @@ class Archiver: subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', nargs='?', default='', type=location_validator(), - help='repository/archive to recreate') + help='repository or archive to recreate') subparser.add_argument('paths', metavar='PATH', nargs='*', type=str, help='paths to recreate; patterns are supported') @@ -4134,7 +4134,7 @@ class Archiver: subparser.set_defaults(func=self.do_debug_dump_repo_objs) subparser.add_argument('location', metavar='REPOSITORY', type=location_validator(archive=False), - help='repo to dump') + help='repository to dump') subparser.add_argument('--ghost', dest='ghost', action='store_true', help='dump all segment file contents, including deleted/uncommitted objects and commits.') @@ -4149,7 +4149,7 @@ class Archiver: subparser.set_defaults(func=self.do_debug_search_repo_objs) subparser.add_argument('location', metavar='REPOSITORY', type=location_validator(archive=False), - help='repo to search') + help='repository to search') subparser.add_argument('wanted', metavar='WANTED', type=str, help='term to search the repo for, either 0x1234abcd hex term or a string') @@ -4286,9 +4286,9 @@ class Archiver: help='benchmarks borg CRUD (create, extract, update, delete).') subparser.set_defaults(func=self.do_benchmark_crud) - subparser.add_argument('location', metavar='REPO', + subparser.add_argument('location', metavar='REPOSITORY', type=location_validator(archive=False), - help='repo to use for benchmark (must exist)') + help='repository to use for benchmark (must exist)') subparser.add_argument('path', metavar='PATH', help='path were to create benchmark input data')