Merge "Fix typos"

This commit is contained in:
Jenkins 2016-04-12 13:09:24 +00:00 committed by Gerrit Code Review
commit 1134091ff1
1 changed files with 3 additions and 3 deletions

View File

@ -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.