Skip to content
Snippets Groups Projects
Commit 88aec4c4 authored by Florent Thiery's avatar Florent Thiery
Browse files

fix typo, refs #20586

parent 227f32bb
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ conf_servers = ( ...@@ -29,7 +29,7 @@ conf_servers = (
for s in conf_servers: for s in conf_servers:
v = conf.get(s) v = conf.get(s)
try: try:
url = "https://%s" % s url = "https://%s" % v
requests.get(url) requests.get(url)
sys.exit(0) sys.exit(0)
except requests.exceptions.SSLError as e: except requests.exceptions.SSLError as e:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment