Commit 46f5d146 authored by Florent Xicluna's avatar Florent Xicluna

Remove no-op code from previous commit.

parent 68f71a34
......@@ -87,10 +87,7 @@ else:
# Fallback. All we need is something that raises OSError if the
# file doesn't exist.
def _stat(fn):
try:
f = open(fn)
except OSError:
raise OSError
f = open(fn)
f.close()
def _exists(fn):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment