diff options
author | Kevin L. Mitchell <kevin.mitchell@rackspace.com> | 2011-09-06 20:26:25 +0000 |
---|---|---|
committer | Tarmac <> | 2011-09-06 20:26:25 +0000 |
commit | 99e223dc231bae3d98f7979a403d97fd100f03a1 (patch) | |
tree | 3e5dba93a62ab5cd1772b0c7cbcd1a0027e5ca5f | |
parent | 78a63bcad5f29c8927151556229271668b0f9e2b (diff) | |
parent | 9b2885076d2ed438fb3189b8528f5bec6a2cda4d (diff) | |
download | nova-99e223dc231bae3d98f7979a403d97fd100f03a1.tar.gz nova-99e223dc231bae3d98f7979a403d97fd100f03a1.tar.xz nova-99e223dc231bae3d98f7979a403d97fd100f03a1.zip |
Micro-fix; "exception" was misspelled as "exceptions"
-rw-r--r-- | nova/network/manager.py | 2 |
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) |