From a51ea2b13dd865530fed1bb303ab2e259ddf7ec2 Mon Sep 17 00:00:00 2001 From: Jason Koelker Date: Mon, 19 Sep 2011 09:33:47 -0500 Subject: Fix typo in comment --- nova/compute/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit