Skip to content

Commit

Permalink
Fix tmpfile misspelled as tmplfile (ansible#17183)
Browse files Browse the repository at this point in the history
  • Loading branch information
abadger committed Aug 22, 2016
1 parent bf929ac commit 719c73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/parsing/vault/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ def __init__(self, password, filename):
# VaultFile a context manager instead (implement __enter__ and __exit__)
def __del__(self):
self.filehandle.close()
os.unlink(self.tmplfile)
os.unlink(self.tmpfile)

def is_encrypted(self):
peak = self.filehandle.readline()
Expand Down

0 comments on commit 719c73a

Please sign in to comment.