Skip to content

Commit eca3788

Browse files
authored
Merge pull request #9 from mdujava/fix_typo
2 parents e386a57 + 13c721a commit eca3788

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

threescale_api_crd/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2284,7 +2284,7 @@ def load_openapi(entity, spec):
22842284
if "url" in spec:
22852285
url = spec["url"]
22862286
entity["url"] = url
2287-
res = requests.get(urli, timeout=60)
2287+
res = requests.get(url, timeout=60)
22882288
if url.endswith(".yaml") or url.endswith(".yml"):
22892289
entity["body"] = json.dumps(
22902290
yaml.load(res.content, Loader=yaml.SafeLoader)

0 commit comments

Comments
 (0)