ソースを参照

Fix paper key import error message

Peter Zangerl 1 ヶ月 前
コミット
ce5dd4bed2
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/borg/crypto/keymanager.py

+ 1 - 1
src/borg/crypto/keymanager.py

@@ -181,7 +181,7 @@ class KeyManager:
                     try:
                         (id_lines, id_repoid, id_complete_checksum) = data.split("/")
                     except ValueError:
-                        print("the id line must contain exactly three '/', try again")
+                        print("the id line must contain exactly two '/', try again")
                         continue
                     if sha256_truncated(data.lower().encode("ascii"), 2) != checksum:
                         print("line checksum did not match, try same line again")