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

fix error printing, refs #20586

parent 88aec4c4
No related branches found
No related tags found
No related merge requests found
...@@ -33,5 +33,5 @@ for s in conf_servers: ...@@ -33,5 +33,5 @@ for s in conf_servers:
requests.get(url) requests.get(url)
sys.exit(0) sys.exit(0)
except requests.exceptions.SSLError as e: except requests.exceptions.SSLError as e:
print('Error: SSL certificate for %s is not valid' % (url, e)) print('Error: SSL certificate for %s is not valid: %s' % (url, e))
sys.exit(1) sys.exit(1)
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