Remove no-op code from previous commit.

This commit is contained in:
Florent Xicluna 2011-10-28 21:58:56 +02:00
parent 68f71a34f4
commit 46f5d146c1

View file

@ -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):