Fix typo in vault decrypt error message (#31335)

This commit is contained in:
Michael Vermaes
2017-10-06 06:09:22 +08:00
committed by ansibot
parent 336723d293
commit fad3a4dc83
2 changed files with 2 additions and 2 deletions

View File

@@ -587,7 +587,7 @@ class VaultLib:
(vault_secret_id, filename, e))
continue
else:
msg = "Decryption failed (no vault secrets would found that could decrypt)"
msg = "Decryption failed (no vault secrets were found that could decrypt)"
if filename:
msg += " on %s" % filename
raise AnsibleVaultError(msg)