diff options
| author | Kevin L. Mitchell <kevin.mitchell@rackspace.com> | 2011-06-17 17:33:00 +0000 |
|---|---|---|
| committer | Kevin L. Mitchell <kevin.mitchell@rackspace.com> | 2011-06-17 17:33:00 +0000 |
| commit | f0b0f4ad4c6f90b1b3b23e6a048ebda8e62cb254 (patch) | |
| tree | 4cec4ec00896d07bc95fd9cb868abcf2ad3aa097 /nova/api | |
| parent | a58afe40765e8c429f5e38def6da721564cde5fd (diff) | |
| download | nova-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.py | 4 |
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 |
