summaryrefslogtreecommitdiff
path: root/paste/wsgiwrappers.py
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2007-02-21 07:31:12 +0000
committerpjenvey <devnull@localhost>2007-02-21 07:31:12 +0000
commitbf8a620b33fb98d11508495f97a485c1fbcd73d8 (patch)
tree762cd9a0913cd8ed640581c5ddf45b343e85652b /paste/wsgiwrappers.py
parentac3a391505117febeccf52b6097f1bc485b729a4 (diff)
downloadpaste-bf8a620b33fb98d11508495f97a485c1fbcd73d8.tar.gz
minor change to StackedObjectProxy's repr
Diffstat (limited to 'paste/wsgiwrappers.py')
-rw-r--r--paste/wsgiwrappers.py2
1 files changed, 1 insertions, 1 deletions
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,' % \