From c461fa8d0b050f9ed4ce957a7a8e34082160974e Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 28 Dec 2022 17:23:41 +0100 Subject: [PATCH] do not use markup in simple error messages --- src/borg/archiver/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/archiver/__init__.py b/src/borg/archiver/__init__.py index f05b43174..1549f2af7 100644 --- a/src/borg/archiver/__init__.py +++ b/src/borg/archiver/__init__.py @@ -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: