summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/api/openstack/__init__.py1
-rw-r--r--nova/tests/api/openstack/test_api.py1
2 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/__init__.py b/nova/api/openstack/__init__.py
index 21b9b1d7d..452290505 100644
--- a/nova/api/openstack/__init__.py
+++ b/nova/api/openstack/__init__.py
@@ -56,6 +56,7 @@ class FaultWrapper(wsgi.Middleware):
exc = webob.exc.HTTPInternalServerError(explanation=str(ex))
return faults.Fault(exc)
+
class APIRouter(wsgi.Router):
"""
Routes requests on the OpenStack API to the appropriate controller
diff --git a/nova/tests/api/openstack/test_api.py b/nova/tests/api/openstack/test_api.py
index 1474148f5..db0fe1060 100644
--- a/nova/tests/api/openstack/test_api.py
+++ b/nova/tests/api/openstack/test_api.py
@@ -50,7 +50,6 @@ class APITest(unittest.TestCase):
exc = webob.exc.HTTPNotFound(explanation='Raised a webob.exc')
return faults.Fault(exc)
-
#api.application = succeed
api = self._wsgi_app(succeed)
resp = Request.blank('/').get_response(api)