From 4336ddb74eee23d98f8089c140f106cc259feccd Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Thu, 30 Jul 2020 12:35:49 -0700 Subject: [PATCH] Fixed typo --- py-json/LANforge/LFUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-json/LANforge/LFUtils.py b/py-json/LANforge/LFUtils.py index f6d57a31..f724a977 100644 --- a/py-json/LANforge/LFUtils.py +++ b/py-json/LANforge/LFUtils.py @@ -324,7 +324,7 @@ def waitUntilPortsAdminUp(resource_id=1, base_url="http://localhost:8080", port_ lf_r = LFRequest.LFRequest(base_url, uri) json_response = lf_r.getAsJson(debug_=False) if json_response == None: - print("port %s disappeared" % port_name) + print("port %s appeared" % port_name) continue if "interface" in json_response: json_response = json_response['interface']