Author: russellm
Date: 2006-07-20 00:04:45 -0500 (Thu, 20 Jul 2006)
New Revision: 3393
Modified:
django/trunk/django/core/handlers/wsgi.py
Log:
Clarified debug naming of WSGIRequests
Modified: django/trunk/django/core/handlers/wsgi.py
===================================================================
--- django/trunk/django/core/handlers/wsgi.py 2006-07-20 03:32:24 UTC (rev
3392)
+++ django/trunk/django/core/handlers/wsgi.py 2006-07-20 05:04:45 UTC (rev
3393)
@@ -59,7 +59,7 @@
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))
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates
-~----------~----~----~----~------~----~------~--~---