Ticket #8457: sessions-file-typo.diff
| File sessions-file-typo.diff, 0.5 kB (added by carljm, 5 months ago) |
|---|
-
django/contrib/sessions/backends/file.py
old new 81 81 finally: 82 82 os.close(fd) 83 83 except OSError, e: 84 if must_create and e.errno == errno.EEXIST:84 if must_create and e.errno == os.errno.EEXIST: 85 85 raise CreateError 86 86 raise 87 87 except (IOError, EOFError):
