From d9c457a77704b5b0deb90c6190c347a1c0831315 Mon Sep 17 00:00:00 2001 From: David Ripton Date: Mon, 18 Feb 2013 19:36:06 -0500 Subject: Fix a typo in two comments. networksa -> networks Change-Id: I925fbf55f9a52d3866693b32f138e1b09efbbad8 --- nova/network/manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/network/manager.py b/nova/network/manager.py index ef967383c..8b27c50db 100644 --- a/nova/network/manager.py +++ b/nova/network/manager.py @@ -1680,13 +1680,13 @@ class VlanManager(RPCAllocateFixedIP, floating_ips.FloatingIP, NetworkManager): def _get_network_by_id(self, context, network_id): # NOTE(vish): Don't allow access to networks with project_id=None as - # these are networksa that haven't been allocated to a + # these are networks that haven't been allocated to a # project yet. return self.db.network_get(context, network_id, project_only=True) def _get_networks_by_uuids(self, context, network_uuids): # NOTE(vish): Don't allow access to networks with project_id=None as - # these are networksa that haven't been allocated to a + # these are networks that haven't been allocated to a # project yet. return self.db.network_get_all_by_uuids(context, network_uuids, project_only=True) -- cgit