diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-01-29 20:06:21 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-01-29 20:06:21 +0000 |
commit | cfe3f34a43b56bf6594ff7e681af430786affa57 (patch) | |
tree | 2c9d700a79d53b45d3b1c4e01d8a7f845018e91d | |
parent | 23a999da1fb711c659bdd1833f8285dd8e0d7e21 (diff) | |
parent | dd73aabaf088c8959f28e256b31edffe29b5899c (diff) | |
download | nova-cfe3f34a43b56bf6594ff7e681af430786affa57.tar.gz nova-cfe3f34a43b56bf6594ff7e681af430786affa57.tar.xz nova-cfe3f34a43b56bf6594ff7e681af430786affa57.zip |
Merge "erase outdated comment"
-rw-r--r-- | nova/network/linux_net.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/network/linux_net.py b/nova/network/linux_net.py index f090064a3..434ce0b73 100644 --- a/nova/network/linux_net.py +++ b/nova/network/linux_net.py @@ -392,7 +392,6 @@ class IptablesManager(object): start = lines.index('*%s' % table_name) - 1 except ValueError: # Couldn't find table_name - # For Unit Tests return (0, 0) end = lines[start:].index('COMMIT') + start + 2 return (start, end) |