Fix NameError on 'ansible-vault view' (#17440)

pull/4420/head
Adrian Likins 2016-09-07 10:48:01 -04:00 committed by GitHub
parent 8c43750a3e
commit 07e713e7c6
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class VaultCLI(CLI):
# unicode here because we are displaying it and therefore can make # unicode here because we are displaying it and therefore can make
# the decision that the display doesn't have to be precisely what # the decision that the display doesn't have to be precisely what
# the input was (leave that to decrypt instead) # the input was (leave that to decrypt instead)
self.pager(ansible.module_utils._text.to_text(self.editor.plaintext(f))) self.pager(to_text(self.editor.plaintext(f)))
def execute_rekey(self): def execute_rekey(self):
for f in self.args: for f in self.args: