aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-04-12 13:09:24 +0000
committerGerrit Code Review <review@openstack.org>2016-04-12 13:09:24 +0000
commit1134091ff1a6a0fc9f8dc6fe4d70bf0274728fdd (patch)
treec859a5355bccaa92ee6ca5ae58af1de227d8c878
parent2ab73df9e050c6d7fc512e3ab053310e2f3d359f (diff)
parent2add867244b324fc5e594372ca9b45e5984f8b3b (diff)
Merge "Fix typos"
-rw-r--r--os_net_config/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/os_net_config/__init__.py b/os_net_config/__init__.py
index a8fdf43..745da18 100644
--- a/os_net_config/__init__.py
+++ b/os_net_config/__init__.py
@@ -110,16 +110,16 @@ class NetConfig(object):
def add_bond(self, bond):
"""Add an OvsBond object to the net config object.
- :param bridge: The OvsBond object to add.
+ :param bond: The OvsBond object to add.
"""
raise NotImplemented("add_bond is not implemented.")
def add_linux_bond(self, bond):
"""Add a LinuxBond object to the net config object.
- :param bridge: The LinuxBond object to add.
+ :param bond: The LinuxBond object to add.
"""
- raise NotImplemented("add_linuxbond is not implemented.")
+ raise NotImplemented("add_linux_bond is not implemented.")
def apply(self, cleanup=False):
"""Apply the network configuration.