From 9b6d1efe774b6aaf1974fdedc84b8e0c6925bb4c Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 20 Jul 2006 05:04:45 +0000 Subject: [PATCH] Clarified debug naming of WSGIRequests git-svn-id: http://code.djangoproject.com/svn/django/trunk@3393 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/handlers/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/handlers/wsgi.py b/django/core/handlers/wsgi.py index 00a9a2ca536..2f0d4f78b43 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 '' % \ + return '' % \ (pformat(self.GET), pformat(self.POST), pformat(self.COOKIES), pformat(self.META))