summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin L. Mitchell <kevin.mitchell@rackspace.com>2011-09-06 20:26:25 +0000
committerTarmac <>2011-09-06 20:26:25 +0000
commit99e223dc231bae3d98f7979a403d97fd100f03a1 (patch)
tree3e5dba93a62ab5cd1772b0c7cbcd1a0027e5ca5f
parent78a63bcad5f29c8927151556229271668b0f9e2b (diff)
parent9b2885076d2ed438fb3189b8528f5bec6a2cda4d (diff)
downloadnova-99e223dc231bae3d98f7979a403d97fd100f03a1.tar.gz
nova-99e223dc231bae3d98f7979a403d97fd100f03a1.tar.xz
nova-99e223dc231bae3d98f7979a403d97fd100f03a1.zip
Micro-fix; "exception" was misspelled as "exceptions"
-rw-r--r--nova/network/manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/network/manager.py b/nova/network/manager.py
index e6b30d1a0..050cec250 100644
--- a/nova/network/manager.py
+++ b/nova/network/manager.py
@@ -448,7 +448,7 @@ class NetworkManager(manager.SchedulerDependentManager):
try:
fixed_ips = kwargs.get('fixed_ips') or \
self.db.fixed_ip_get_by_instance(context, instance_id)
- except exceptions.FixedIpNotFoundForInstance:
+ except exception.FixedIpNotFoundForInstance:
fixed_ips = []
LOG.debug(_("network deallocation for instance |%s|"), instance_id,
context=context)