aboutsummaryrefslogtreecommitdiffstats
path: root/os_net_config/impl_ifcfg.py
diff options
context:
space:
mode:
authorSarath Kumar <sarath.kutty@bigswitch.com>2016-07-22 11:03:34 -0700
committerSarath Kumar <sarath.kutty@bigswitch.com>2016-08-29 11:22:51 -0700
commit9334e948162b8e71a44022441d92503d4a3e3512 (patch)
tree18ff711f4ca6ee5a310aba80a6a031b8cd100dce /os_net_config/impl_ifcfg.py
parentf79d534c3e130bb539cf7ccb1d3f9586e922b9a7 (diff)
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
Diffstat (limited to 'os_net_config/impl_ifcfg.py')
-rw-r--r--os_net_config/impl_ifcfg.py2
1 files changed, 1 insertions, 1 deletions
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):