diff options
| author | Naveed Massjouni <naveedm9@gmail.com> | 2011-03-23 16:51:30 -0400 |
|---|---|---|
| committer | Naveed Massjouni <naveedm9@gmail.com> | 2011-03-23 16:51:30 -0400 |
| commit | 0d677a9b63ed9b4612379494bf8a58af1c090331 (patch) | |
| tree | 5b298589ef29ad153197df325aa6d1ffde41ec48 /nova/api | |
| parent | cd6a6195c029125e43a98d7eedc035fa1e87a893 (diff) | |
Should not call super __init__ twice in APIRouter
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/nova/api/openstack/__init__.py b/nova/api/openstack/__init__.py index e68110bc4..143b1d2b2 100644 --- a/nova/api/openstack/__init__.py +++ b/nova/api/openstack/__init__.py @@ -127,8 +127,6 @@ class APIRouter(wsgi.Router): _limits = limits.LimitsController() mapper.resource("limit", "limits", controller=_limits) - super(APIRouter, self).__init__(mapper) - class APIRouterV10(APIRouter): """Define routes specific to OpenStack API V1.0.""" |
