From a1bd5865ed834f81e171fe24086ff3f2ee74786f Mon Sep 17 00:00:00 2001 From: Logan Lipke Date: Thu, 4 Jun 2020 14:16:56 -0700 Subject: [PATCH] Fixed missing %s --- py-json/LANforge/lfcli_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-json/LANforge/lfcli_base.py b/py-json/LANforge/lfcli_base.py index ab3b4bb9..6522bdfd 100644 --- a/py-json/LANforge/lfcli_base.py +++ b/py-json/LANforge/lfcli_base.py @@ -72,7 +72,7 @@ class LFCliBase: # print("continuing...") def check_connect(self): - print("Checking for LANforge GUI connection: " % self.mgr_url) + print("Checking for LANforge GUI connection: %s" % self.mgr_url) response = self.json_get("/") duration = 0 while (response is None) and (duration < 300):