Signed-off-by: Aline Manera <alinefm(a)linux.vnet.ibm.com>
---
src/kimchi/i18n.py | 1 +
src/kimchi/model/networks.py | 4 +---
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/kimchi/i18n.py b/src/kimchi/i18n.py
index e3a051c..e8693da 100644
--- a/src/kimchi/i18n.py
+++ b/src/kimchi/i18n.py
@@ -223,6 +223,7 @@ messages = {
"KCHNET0007E": _("Interface should be bare NIC, bonding or bridge
device."),
"KCHNET0008E": _("Unable to create network %(name)s. Details:
%(err)s"),
"KCHNET0009E": _("Unable to find a free IP address for network
'%(name)s'"),
+ "KCHNET0010E": _("The interface %(iface)s already exist."),
"KCHNET0011E": _("Network name must be a string"),
"KCHNET0012E": _("Supported network types are isolated, NAT and
bridge"),
"KCHNET0013E": _("Network subnet must be a string with IP address and
prefix or netmask"),
diff --git a/src/kimchi/model/networks.py b/src/kimchi/model/networks.py
index 1e94fd2..44f1297 100644
--- a/src/kimchi/model/networks.py
+++ b/src/kimchi/model/networks.py
@@ -211,9 +211,7 @@ class NetworksModel(object):
conn = self.conn.get()
if br_name in [net.bridgeName() for net in conn.listAllNetworks()]:
- error_msg = 'The interface %s already exist' % br_name
- raise InvalidOperation("KCHNET0010E", {'iface': br_name,
- 'err': error_msg})
+ raise InvalidOperation("KCHNET0010E", {'iface': br_name})
with RollbackContext() as rollback:
try:
--
2.1.0