summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-02-19 08:43:50 +0000
committerGerrit Code Review <review@openstack.org>2013-02-19 08:43:50 +0000
commit2526178028e3f2865e101321ec48cecf147565d4 (patch)
tree61ac4af377bca3b9f206e86b14692847261f8d60
parentf68befa7a063a790338ba903ebe8830825889dc7 (diff)
parentd9c457a77704b5b0deb90c6190c347a1c0831315 (diff)
Merge "Fix a typo in two comments. networksa -> networks"
-rw-r--r--nova/network/manager.py4
1 files 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)