Upgrading Caching Django 1.2 to 1.3
July 30, 2011
I was upgrading a site from Django 1.2 to 1.3, and I got the following error when I requested my homepage:
Traceback (most recent call last):
File "/home/drumcoder/web/drumcoder/django/core/servers/basehttp.py", line 283, in run
self.result = application(self.environ, self.start_response)
File "/home/drumcoder/web/drumcoder/django/contrib/staticfiles/handlers.py", line 68, in __call__
return self.application(environ, start_response)
File "/home/drumcoder/web/drumcoder/django/core/handlers/wsgi.py", line 250, in …

