Ticket #515: django.cache.patch
File django.cache.patch, 400 bytes (added by , 19 years ago) |
---|
-
cache.py
317 317 filelist = os.listdir(self._dir) 318 318 except (IOError, OSError): 319 319 self._createdir() 320 filelist = [] 320 321 if len(filelist) > self._max_entries: 321 322 self._cull(filelist) 322 323 try: