From 506187a2e2a7e9232954192d1cf45aab76a0c6a6 Mon Sep 17 00:00:00 2001 From: Stamatis Katsaounis Date: Mon, 10 Sep 2018 11:34:17 +0300 Subject: Replace % operator with format method JIRA: SDNVPN-223 Running the testcase 3 with the % operator was causing an error on formating the string. This patch replace % operator with format method. Change-Id: I33d3a4539bd7e1914f8c52ea8e91ae15083ce0b1 Signed-off-by: Stamatis Katsaounis --- sdnvpn/lib/quagga.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sdnvpn/lib/quagga.py') diff --git a/sdnvpn/lib/quagga.py b/sdnvpn/lib/quagga.py index 0ea206e..f11e188 100644 --- a/sdnvpn/lib/quagga.py +++ b/sdnvpn/lib/quagga.py @@ -48,10 +48,10 @@ def gen_quagga_setup_script(controller_ip, ip_prefix, rd, irt, ert): with open(COMMON_CONFIG.quagga_setup_script_path) as f: template = f.read() - script = template % (controller_ip, - fake_floating_ip, - ext_net_mask, - ip_prefix, rd, irt, ert) + script = template.format(controller_ip, + fake_floating_ip, + ext_net_mask, + ip_prefix, rd, irt, ert) return script -- cgit 1.2.3-korg