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()