From e976d44fb9092de46edb189c174e554a13246da3 Mon Sep 17 00:00:00 2001 From: derrod Date: Fri, 1 May 2020 15:08:48 +0200 Subject: [PATCH] [cli] Fix help metavar for install tags --- legendary/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legendary/cli.py b/legendary/cli.py index 0f7a6ea..4cfc36e 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -464,7 +464,7 @@ def main(): help='Only fetch files whose path starts with (case insensitive)') install_parser.add_argument('--exclude', dest='file_exclude_prefix', action='store', metavar='', type=str, help='Exclude files starting with (case insensitive)') - install_parser.add_argument('--install-tag', dest='install_tag', action='store', metavar='', + install_parser.add_argument('--install-tag', dest='install_tag', action='store', metavar='', type=str, help='Only download files with the specified install tag (testing)') launch_parser.add_argument('--offline', dest='offline', action='store_true', @@ -500,7 +500,7 @@ def main(): list_files_parser.add_argument('--tsv', dest='tsv', action='store_true', help='Output in TSV format') list_files_parser.add_argument('--hashlist', dest='hashlist', action='store_true', help='Output file hash list in hashcheck/sha1sum compatible format') - list_files_parser.add_argument('--install-tag', dest='install_tag', action='store', metavar='', + list_files_parser.add_argument('--install-tag', dest='install_tag', action='store', metavar='', type=str, help='Show only files with specified install tag') args, extra = parser.parse_known_args()