do not use markup in simple error messages

This commit is contained in:
Thomas Waldmann 2022-12-28 17:23:41 +01:00
parent bdc2dbfc08
commit c461fa8d0b
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ class Archiver(
parser.common_options.resolve(args)
func = get_func(args)
if func == self.do_create and args.paths and args.paths_from_stdin:
parser.error("Must not pass PATH with ``--paths-from-stdin``.")
parser.error("Must not pass PATH with --paths-from-stdin.")
if args.progress and getattr(args, "output_list", False):
parser.error("Options --progress and --list do not play nicely together.")
if func == self.do_create and not args.paths: