Prevent traceback.

https://github.com/ansible/ansible/issues/13743#issuecomment-171520585

In some circumstance, the file fails to open.  When that occurs, we
can't try to close it in the finally clause.  Using a context manager is
the cleanest way to change the code to account for that case.
pull/13836/merge
Toshio Kuratomi 9 years ago
parent 965602882a
commit b1a56051bd

@ -130,13 +130,11 @@ class GalaxyRole(object):
install_date=datetime.datetime.utcnow().strftime("%c"), install_date=datetime.datetime.utcnow().strftime("%c"),
) )
info_path = os.path.join(self.path, self.META_INSTALL) info_path = os.path.join(self.path, self.META_INSTALL)
try: with open(info_path, 'w+') as f:
f = open(info_path, 'w+') try:
self._install_info = yaml.safe_dump(info, f) self._install_info = yaml.safe_dump(info, f)
except: except:
return False return False
finally:
f.close()
return True return True

Loading…
Cancel
Save