mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 06:10:22 -07:00
Fix decryption error
This commit is contained in:
parent
52a8efefba
commit
9c9f15acb7
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class VaultLib(object):
|
|||
this_data = '\n'.join(split_data[1:])
|
||||
test_sha = sha256(this_data).hexdigest()
|
||||
if this_sha != test_sha:
|
||||
raise errors.AnsibleError("Decryption of %s failed" % filename)
|
||||
raise errors.AnsibleError("Decryption failed")
|
||||
|
||||
return this_data
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue