aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-11-15 00:18:48 +0000
committerGerrit Code Review <review@openstack.org>2016-11-15 00:18:48 +0000
commit3199064d4d5ce5a81fb38c831c11ab539ed8716a (patch)
treef73e0d4c7805d7d46c7efd7fdef43ba0d69cf8b8
parent469c0ab91ae550945eb4d0a18ebd284994fde384 (diff)
parent7549babd90858e7696079a3340270a06e20ed07b (diff)
Merge "Raise NotImplementedError instead of NotImplemented"
-rw-r--r--os_net_config/__init__.py32
-rw-r--r--os_net_config/impl_eni.py2
2 files changed, 17 insertions, 17 deletions
diff --git a/os_net_config/__init__.py b/os_net_config/__init__.py
index 19d4a1e..faa5e92 100644
--- a/os_net_config/__init__.py
+++ b/os_net_config/__init__.py
@@ -101,105 +101,105 @@ class NetConfig(object):
:param interface: The Interface object to add.
"""
- raise NotImplemented("add_interface is not implemented.")
+ raise NotImplementedError("add_interface is not implemented.")
def add_vlan(self, vlan):
"""Add a Vlan object to the net config object.
:param vlan: The vlan object to add.
"""
- raise NotImplemented("add_vlan is not implemented.")
+ raise NotImplementedError("add_vlan is not implemented.")
def add_bridge(self, bridge):
"""Add an OvsBridge object to the net config object.
:param bridge: The OvsBridge object to add.
"""
- raise NotImplemented("add_bridge is not implemented.")
+ raise NotImplementedError("add_bridge is not implemented.")
def add_ovs_user_bridge(self, bridge):
"""Add an OvsUserBridge object to the net config object.
:param bridge: The OvsUserBridge object to add.
"""
- raise NotImplemented("add_ovs_user_bridge is not implemented.")
+ raise NotImplementedError("add_ovs_user_bridge is not implemented.")
def add_linux_bridge(self, bridge):
"""Add a LinuxBridge object to the net config object.
:param bridge: The LinuxBridge object to add.
"""
- raise NotImplemented("add_linux_bridge is not implemented.")
+ raise NotImplementedError("add_linux_bridge is not implemented.")
def add_ivs_bridge(self, bridge):
"""Add a IvsBridge object to the net config object.
:param bridge: The IvsBridge object to add.
"""
- raise NotImplemented("add_ivs_bridge is not implemented.")
+ raise NotImplementedError("add_ivs_bridge is not implemented.")
def add_nfvswitch_bridge(self, bridge):
"""Add a NfvswitchBridge object to the net config object.
:param bridge: The NfvswitchBridge object to add.
"""
- raise NotImplemented("add_nfvswitch_bridge is not implemented.")
+ raise NotImplementedError("add_nfvswitch_bridge is not implemented.")
def add_bond(self, bond):
"""Add an OvsBond object to the net config object.
:param bond: The OvsBond object to add.
"""
- raise NotImplemented("add_bond is not implemented.")
+ raise NotImplementedError("add_bond is not implemented.")
def add_linux_bond(self, bond):
"""Add a LinuxBond object to the net config object.
:param bond: The LinuxBond object to add.
"""
- raise NotImplemented("add_linux_bond is not implemented.")
+ raise NotImplementedError("add_linux_bond is not implemented.")
def add_linux_team(self, team):
"""Add a LinuxTeam object to the net config object.
:param team: The LinuxTeam object to add.
"""
- raise NotImplemented("add_linux_team is not implemented.")
+ raise NotImplementedError("add_linux_team is not implemented.")
def add_ovs_tunnel(self, tunnel):
"""Add a OvsTunnel object to the net config object.
:param tunnel: The OvsTunnel object to add.
"""
- raise NotImplemented("add_ovs_tunnel is not implemented.")
+ raise NotImplementedError("add_ovs_tunnel is not implemented.")
def add_ovs_patch_port(self, ovs_patch_port):
"""Add a OvsPatchPort object to the net config object.
:param ovs_patch_port: The OvsPatchPort object to add.
"""
- raise NotImplemented("add_ovs_patch_port is not implemented.")
+ raise NotImplementedError("add_ovs_patch_port is not implemented.")
def add_ib_interface(self, ib_interface):
"""Add an InfiniBand Interface object to the net config object.
:param interface: The InfiniBand Interface object to add.
"""
- raise NotImplemented("add_ib_interface is not implemented.")
+ raise NotImplementedError("add_ib_interface is not implemented.")
def add_ovs_dpdk_port(self, ovs_dpdk_port):
"""Add a OvsDpdkPort object to the net config object.
:param ovs_dpdk_port: The OvsDpdkPort object to add.
"""
- raise NotImplemented("add_ovs_dpdk_port is not implemented.")
+ raise NotImplementedError("add_ovs_dpdk_port is not implemented.")
def add_ovs_dpdk_bond(self, ovs_dpdk_bond):
"""Add a OvsDpdkBond object to the net config object.
:param ovs_dpdk_bond: The OvsDpdkBond object to add.
"""
- raise NotImplemented("add_ovs_dpdk_bond is not implemented.")
+ raise NotImplementedError("add_ovs_dpdk_bond is not implemented.")
def apply(self, cleanup=False):
"""Apply the network configuration.
@@ -211,7 +211,7 @@ class NetConfig(object):
for each file that was changed (or would be changed if in --noop
mode).
"""
- raise NotImplemented("apply is not implemented.")
+ raise NotImplementedError("apply is not implemented.")
def execute(self, msg, cmd, *args, **kwargs):
"""Print a message and run a command.
diff --git a/os_net_config/impl_eni.py b/os_net_config/impl_eni.py
index 1d59b57..5b91270 100644
--- a/os_net_config/impl_eni.py
+++ b/os_net_config/impl_eni.py
@@ -134,7 +134,7 @@ class ENINetConfig(os_net_config.NetConfig):
data += " mtu %i\n" % interface.mtu
if interface.hwaddr:
- raise NotImplemented("hwaddr is not implemented.")
+ raise NotImplementedError("hwaddr is not implemented.")
if ovs_extra:
data += " ovs_extra %s\n" % " -- ".join(ovs_extra)