summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Koelker <jason@koelker.net>2011-09-19 09:33:47 -0500
committerJason Koelker <jason@koelker.net>2011-09-19 09:33:47 -0500
commita51ea2b13dd865530fed1bb303ab2e259ddf7ec2 (patch)
tree50ffceebf7284918e50e9930d9f098a1c730a4aa
parentbb697d435d3a07bbf2b58db9ed4b13135579fd3a (diff)
downloadnova-a51ea2b13dd865530fed1bb303ab2e259ddf7ec2.tar.gz
nova-a51ea2b13dd865530fed1bb303ab2e259ddf7ec2.tar.xz
nova-a51ea2b13dd865530fed1bb303ab2e259ddf7ec2.zip
Fix typo in comment
-rw-r--r--nova/compute/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py
index c7fdf4126..9c3cc934e 100644
--- a/nova/compute/api.py
+++ b/nova/compute/api.py
@@ -935,7 +935,7 @@ class API(base.Base):
res = self.network_api.get_instance_uuids_by_ip_filter(context,
filters)
# NOTE(jkoelker) It is possible that we will get the same
- # instance uuid twice (one for ipv4 and ipv4)
+ # instance uuid twice (one for ipv4 and ipv6)
ids = set([r['instance_uuid'] for r in res])
return self.db.instance_get_all_by_filters(context, filters, ids)