From 218035c3e19942209bd535c6f92cd0ef9435b105 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 8 Apr 2006 03:35:37 +0000 Subject: [PATCH] magic-removal: Removed 'user' from django.core.handlers.modpython.ModPythonRequest.__repr__() git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2631 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/handlers/modpython.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 '')