diff options
| -rw-r--r-- | paste/wsgiwrappers.py | 2 |
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,' % \ |
