Ticket #515: django.cache.patch

File django.cache.patch, 400 bytes (added by eugene@…, 19 years ago)
  • cache.py

     
    317317            filelist = os.listdir(self._dir)
    318318        except (IOError, OSError):
    319319            self._createdir()
     320            filelist = []
    320321        if len(filelist) > self._max_entries:
    321322            self._cull(filelist)
    322323        try:
Back to Top