mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-09 21:57:24 +00:00
fix invalid pattern argument error msg
This commit is contained in:
parent
d482251a3e
commit
1bd015cdb5
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ def parse_inclexcl_command(cmd_line_str, fallback=ShellPattern):
|
|||
|
||||
cmd = cmd_prefix_map.get(cmd_line_str[0])
|
||||
if cmd is None:
|
||||
raise argparse.ArgumentTypeError("A pattern/command must start with anyone of: %s" %
|
||||
raise argparse.ArgumentTypeError("A pattern/command must start with any of: %s" %
|
||||
', '.join(cmd_prefix_map))
|
||||
|
||||
# remaining text on command-line following the command character
|
||||
|
|
Loading…
Add table
Reference in a new issue