Fixed missing %s in url

This commit is contained in:
Logan Lipke
2020-06-05 10:51:51 -07:00
parent 0736b1d645
commit a137ca1792

View File

@@ -341,7 +341,7 @@ def waitUntilPortsAppear(resource_id=1, base_url="http://localhost:8080", port_l
found_stations = []
for port_name in port_list:
sleep(1)
url = "%s/%s/%s" % (base_url, port_url, resource_id, port_name)
url = "%s%s/%s/%s" % (base_url, port_url, resource_id, port_name)
lf_r = LFRequest.LFRequest(url)
json_response = lf_r.getAsJson(show_error=False)
if (json_response != None):