Remove FIXME where no change is needed (#69466)

* Added exception

* Added changelog fragment

* Remove FIXME comment

* Edit changelog fragment
This commit is contained in:
Chris Holland 2020-05-14 12:44:33 -07:00 committed by GitHub
parent 9767d592a8
commit dfa2863dee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- objects - Remove FIXME comment because no fix is needed.

View file

@ -113,7 +113,6 @@ class AnsibleVaultEncryptedUnicode(yaml.YAMLObject, AnsibleBaseYAMLObject):
@property
def data(self):
if not self.vault:
# FIXME: raise exception?
return self._ciphertext
return to_text(self.vault.decrypt(self._ciphertext))