diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-02-19 08:43:50 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-02-19 08:43:50 +0000 |
| commit | 2526178028e3f2865e101321ec48cecf147565d4 (patch) | |
| tree | 61ac4af377bca3b9f206e86b14692847261f8d60 | |
| parent | f68befa7a063a790338ba903ebe8830825889dc7 (diff) | |
| parent | d9c457a77704b5b0deb90c6190c347a1c0831315 (diff) | |
Merge "Fix a typo in two comments. networksa -> networks"
| -rw-r--r-- | nova/network/manager.py | 4 |
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) |
