Catch OSErrors and IOErrors also in util._is_file if input does not exist.
parent
0b9ee78d20
commit
8dcf49fa95
|
@ -140,7 +140,7 @@ def _is_file(input):
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
assert os.lstat(input).st_size > 0, "not a file: %s" % input
|
assert os.lstat(input).st_size > 0, "not a file: %s" % input
|
||||||
except (AssertionError, TypeError) as error:
|
except (AssertionError, TypeError, IOError, OSError) as error:
|
||||||
logger.debug(error.message)
|
logger.debug(error.message)
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue