Revert "remove the try except block around hasAtomicMove"

This reverts commit 411f70eb0e.
This commit is contained in:
Rahul Huilgol 2020-02-20 23:45:13 +00:00
parent cb5b00852c
commit 52f4a69a11

View File

@ -603,7 +603,11 @@ def has_atomic_move(path):
we need to be careful about using moves. In some cases it is safer
not to use temporary locations in this case.
"""
return _pywrap_file_io.HasAtomicMove(compat.as_bytes(path))
try:
return _pywrap_file_io.HasAtomicMove(compat.as_bytes(path))
except errors.OpError:
# defaults to True
return True
@tf_export(v1=["gfile.ListDirectory"])