diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-06-08 05:00:13 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-06-08 05:00:13 +0000 |
| commit | 2abfd5dd586c4f6fb619de561b2194687021e256 (patch) | |
| tree | 51f32f85db5f5fae270924bdf93d2ff3072fc9c2 /django/middleware/http.py | |
| parent | 5edd1335b2ae3530bab124b8e9cfb6928a975088 (diff) | |
Fixed #2109 -- Convert old-style classes to new-style classes throughout Django. Thanks, Nicola Larosa
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3113 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/middleware/http.py')
| -rw-r--r-- | django/middleware/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/middleware/http.py b/django/middleware/http.py index 2bccd60903..0a8cd67dfa 100644 --- a/django/middleware/http.py +++ b/django/middleware/http.py @@ -1,6 +1,6 @@ import datetime -class ConditionalGetMiddleware: +class ConditionalGetMiddleware(object): """ Handles conditional GET operations. If the response has a ETag or Last-Modified header, and the request has If-None-Match or |
