Procházet zdrojové kódy

Fix invalid archive error message

Ellis Michael před 6 roky
rodič
revize
b6a7a0806e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/borg/helpers/parseformat.py

+ 1 - 1
src/borg/helpers/parseformat.py

@@ -500,7 +500,7 @@ def archivename_validator():
     def validator(text):
         text = replace_placeholders(text)
         if '/' in text or '::' in text or not text:
-            raise argparse.ArgumentTypeError('Invalid repository name: "%s"' % text)
+            raise argparse.ArgumentTypeError('Invalid archive name: "%s"' % text)
         return text
     return validator