Kaydet (Commit) 46f5d146 authored tarafından Florent Xicluna's avatar Florent Xicluna

Remove no-op code from previous commit.

üst 68f71a34
...@@ -87,10 +87,7 @@ else: ...@@ -87,10 +87,7 @@ else:
# Fallback. All we need is something that raises OSError if the # Fallback. All we need is something that raises OSError if the
# file doesn't exist. # file doesn't exist.
def _stat(fn): def _stat(fn):
try: f = open(fn)
f = open(fn)
except OSError:
raise OSError
f.close() f.close()
def _exists(fn): 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