From 2de362934adc0ec8fd5cd8fb60d2bdea6c161611 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Mon, 24 Sep 2012 12:06:35 -0700 Subject: Spelling: ownz=>owns Change-Id: I856a547962ee34aa17c0595afdbc9fc01256edb0 --- nova/network/manager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nova/network/manager.py b/nova/network/manager.py index ff1b92ee8..f5b23ab24 100644 --- a/nova/network/manager.py +++ b/nova/network/manager.py @@ -449,7 +449,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 @@ -498,7 +498,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 @@ -578,7 +578,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 -- cgit