diff options
| -rw-r--r-- | nova/network/manager.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/network/manager.py b/nova/network/manager.py index 02bd4097d..2485fc90e 100644 --- a/nova/network/manager.py +++ b/nova/network/manager.py @@ -453,7 +453,7 @@ class FloatingIP(object): return use_quota = not floating_ip.get('auto_assigned') - # make sure project ownz this floating ip (allocated) + # make sure project owns this floating ip (allocated) self._floating_ip_owned_by_project(context, floating_ip) # make sure floating ip is not associated @@ -502,7 +502,7 @@ class FloatingIP(object): if not affect_auto_assigned and floating_ip.get('auto_assigned'): return - # make sure project ownz this floating ip (allocated) + # make sure project owns this floating ip (allocated) self._floating_ip_owned_by_project(context, floating_ip) # disassociate any already associated @@ -582,7 +582,7 @@ class FloatingIP(object): if not affect_auto_assigned and floating_ip.get('auto_assigned'): return - # make sure project ownz this floating ip (allocated) + # make sure project owns this floating ip (allocated) self._floating_ip_owned_by_project(context, floating_ip) # make sure floating ip is associated |
