diff options
| author | Alex Meade <alex.meade@rackspace.com> | 2011-06-08 18:06:26 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-06-08 18:06:26 +0000 |
| commit | 259e725ee994fec83c177ca91c02bed8486b37d6 (patch) | |
| tree | e2e7e9454a8d6f671b5c4d5d81fcf39442718ff6 /nova/api | |
| parent | 405945ad4801a9e434bcf9292bc01db354a9f2a7 (diff) | |
| parent | b91ff4561b1c929718dd7a92bb8d8ebc7c841b38 (diff) | |
Cleaned up some pylint errors
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/versions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/versions.py b/nova/api/openstack/versions.py index 9db160102..4c682302f 100644 --- a/nova/api/openstack/versions.py +++ b/nova/api/openstack/versions.py @@ -35,7 +35,7 @@ class Versions(wsgi.Resource): 'application/xml': wsgi.XMLDictSerializer(metadata=metadata), } - super(Versions, self).__init__(None, serializers=serializers) + wsgi.Resource.__init__(self, None, serializers=serializers) def dispatch(self, request, *args): """Respond to a request for all OpenStack API versions.""" |
