diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2006-07-20 05:04:45 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2006-07-20 05:04:45 +0000 |
| commit | 9b6d1efe774b6aaf1974fdedc84b8e0c6925bb4c (patch) | |
| tree | a23cd999680156fbc1d77a3c2b81db3a2dd5ce95 | |
| parent | 740a8d20f182bfa5d8f53fe625d7ebafc4ba4bb9 (diff) | |
Clarified debug naming of WSGIRequests
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3393 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/handlers/wsgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/handlers/wsgi.py b/django/core/handlers/wsgi.py index 00a9a2ca53..2f0d4f78b4 100644 --- a/django/core/handlers/wsgi.py +++ b/django/core/handlers/wsgi.py @@ -59,7 +59,7 @@ class WSGIRequest(http.HttpRequest): def __repr__(self): from pprint import pformat - return '<DjangoRequest\nGET:%s,\nPOST:%s,\nCOOKIES:%s,\nMETA:%s>' % \ + return '<WSGIRequest\nGET:%s,\nPOST:%s,\nCOOKIES:%s,\nMETA:%s>' % \ (pformat(self.GET), pformat(self.POST), pformat(self.COOKIES), pformat(self.META)) |
