summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorKevin L. Mitchell <kevin.mitchell@rackspace.com>2011-06-17 17:33:00 +0000
committerKevin L. Mitchell <kevin.mitchell@rackspace.com>2011-06-17 17:33:00 +0000
commitf0b0f4ad4c6f90b1b3b23e6a048ebda8e62cb254 (patch)
tree4cec4ec00896d07bc95fd9cb868abcf2ad3aa097 /nova/api
parenta58afe40765e8c429f5e38def6da721564cde5fd (diff)
downloadnova-f0b0f4ad4c6f90b1b3b23e6a048ebda8e62cb254.tar.gz
nova-f0b0f4ad4c6f90b1b3b23e6a048ebda8e62cb254.tar.xz
nova-f0b0f4ad4c6f90b1b3b23e6a048ebda8e62cb254.zip
Remove thirdwheel.py and do the test with a now-public ExtensionManager.add_extension()
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/extensions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/openstack/extensions.py b/nova/api/openstack/extensions.py
index 28d9d9192..da06ecd15 100644
--- a/nova/api/openstack/extensions.py
+++ b/nova/api/openstack/extensions.py
@@ -414,9 +414,9 @@ class ExtensionManager(object):
'file': ext_path})
continue
new_ext = new_ext_class()
- self._add_extension(new_ext)
+ self.add_extension(new_ext)
- def _add_extension(self, ext):
+ def add_extension(self, ext):
# Do nothing if the extension doesn't check out
if not self._check_extension(ext):
return