Ticket #8457: sessions-file-typo.diff
File sessions-file-typo.diff, 543 bytes (added by , 16 years ago) |
---|
-
django/contrib/sessions/backends/file.py
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):