ignore closing file error when file not open

fixes #16268

(cherry picked from commit 07846f7bec)
This commit is contained in:
Brian Coca 2016-06-14 09:33:45 -04:00
parent 6e2651ce07
commit 97a9eaa299

View file

@ -101,7 +101,10 @@ class CacheModule(BaseCacheModule):
else:
f.write(jsonify(value))
finally:
f.close()
try:
f.close()
except UnboundLocalError:
pass
def has_expired(self, key):