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))