diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py index 825a93fccf..8ab8bf3789 100644 --- a/django/core/handlers/modpython.py +++ b/django/core/handlers/modpython.py @@ -16,9 +16,9 @@ class ModPythonRequest(http.HttpRequest): self.path = req.uri def __repr__(self): - return '' % \ + return '' % \ (self.path, pformat(self.GET), pformat(self.POST), pformat(self.COOKIES), - pformat(self.META), pformat(self.user)) + pformat(self.META)) def get_full_path(self): return '%s%s' % (self.path, self._req.args and ('?' + self._req.args) or '')