Can't -> cannot

This commit is contained in:
Sergi Delgado Segura
2020-04-10 16:30:13 +02:00
parent a427b12799
commit a1a87ba9da
5 changed files with 7 additions and 7 deletions

View File

@@ -178,7 +178,7 @@ class Cryptographer:
blob = hexlify(blob).decode("utf8")
except InvalidTag:
raise EncryptionError("Can't decrypt blob with the provided key", blob=encrypted_blob, key=secret)
raise EncryptionError("Cannot decrypt blob with the provided key", blob=encrypted_blob, key=secret)
return blob