From 9334e948162b8e71a44022441d92503d4a3e3512 Mon Sep 17 00:00:00 2001 From: Sarath Kumar Date: Fri, 22 Jul 2016 11:03:34 -0700 Subject: Cleanups and new unit test for IVS - refactor test_object unit-test for IVS to follow other object class tests - add new CLI unit test for IVS - cleanup comments from https://review.openstack.org/#/c/345599 Change-Id: I0c337b019ae90ee7b2f207ff9b5060ed67bf182f --- os_net_config/impl_ifcfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'os_net_config/impl_ifcfg.py') diff --git a/os_net_config/impl_ifcfg.py b/os_net_config/impl_ifcfg.py index 79e3e42..ab8b094 100644 --- a/os_net_config/impl_ifcfg.py +++ b/os_net_config/impl_ifcfg.py @@ -599,7 +599,7 @@ class IfcfgNetConfig(os_net_config.NetConfig): ifaces.append(iface) internal_str = ''.join(ifaces) - data = ("SETUP_ARGS=\"%s%s%s\"" % (cpu_str, iface_str, internal_str)) + data = "SETUP_ARGS=\"%s%s%s\"" % (cpu_str, iface_str, internal_str) return data def apply(self, cleanup=False, activate=True): -- cgit 1.2.3-korg