From 957ceec56dbeb7dc479ae1c5fbcc69ef14fde0fc Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Wed, 27 Jul 2011 11:06:47 -0500 Subject: Removing attribute duplicated from superclass; causes an issue in py 2.7 Change-Id: I9241b3d0869a4e37910c7de57ff04da0f98f74d8 --- keystone/common/wsgi.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/keystone/common/wsgi.py b/keystone/common/wsgi.py index 66cbb571..a062f703 100755 --- a/keystone/common/wsgi.py +++ b/keystone/common/wsgi.py @@ -420,12 +420,6 @@ class WSGIHTTPException(Response, webob.exc.HTTPException): return self.generate_response(environ, start_response) return webob.Response.__call__(self, environ, start_response) - def wsgi_response(self): - """This object is a WSGI webob response, so returns self""" - return self - - wsgi_response = property(wsgi_response) - def exception(self): """Returns self as an exception response""" return webob.exc.HTTPException(self.explanation, self) -- cgit