From bf8a620b33fb98d11508495f97a485c1fbcd73d8 Mon Sep 17 00:00:00 2001 From: pjenvey Date: Wed, 21 Feb 2007 07:31:12 +0000 Subject: minor change to StackedObjectProxy's repr --- paste/wsgiwrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'paste') diff --git a/paste/wsgiwrappers.py b/paste/wsgiwrappers.py index 8889c22..03b634e 100644 --- a/paste/wsgiwrappers.py +++ b/paste/wsgiwrappers.py @@ -258,7 +258,7 @@ class WSGIRequest(object): def __repr__(self): """Show important attributes of the WSGIRequest""" pf = pformat - msg = '<%s.%s at 0x%x method=%s,' % \ + msg = '<%s.%s object at 0x%x method=%s,' % \ (self.__class__.__module__, self.__class__.__name__, id(self), pf(self.method)) msg += '\nscheme=%s, host=%s, script_name=%s, path_info=%s,' % \ -- cgit v1.2.1