diff options
| author | Matthew Hooker <matt@cloudscaling.com> | 2011-08-09 19:35:40 -0400 |
|---|---|---|
| committer | Matthew Hooker <matt@cloudscaling.com> | 2011-08-09 19:35:40 -0400 |
| commit | 83ed9faa488b3ec0f1cb16e7147293c912e2fc2b (patch) | |
| tree | db2917d0ab0d79df2f8eff3b01d0c918723a5d1b | |
| parent | 8c6ebaf9861e3b652663c0ff60ad545864f72677 (diff) | |
| download | nova-83ed9faa488b3ec0f1cb16e7147293c912e2fc2b.tar.gz nova-83ed9faa488b3ec0f1cb16e7147293c912e2fc2b.tar.xz nova-83ed9faa488b3ec0f1cb16e7147293c912e2fc2b.zip | |
pep8 fix
| -rw-r--r-- | nova/api/openstack/contrib/floating_ips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/contrib/floating_ips.py b/nova/api/openstack/contrib/floating_ips.py index 52c9c6cf9..2aba1068a 100644 --- a/nova/api/openstack/contrib/floating_ips.py +++ b/nova/api/openstack/contrib/floating_ips.py @@ -102,7 +102,7 @@ class FloatingIPController(object): def delete(self, req, id): context = req.environ['nova.context'] ip = self.network_api.get_floating_ip(context, id) - + if 'fixed_ip' in ip: try: self.disassociate(req, id, '') |
