Skip to content
Snippets Groups Projects
Commit 18d99eee authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Changed text of warnings

parent e08f53e3
No related branches found
No related tags found
No related merge requests found
......@@ -47,11 +47,13 @@ def verify_server(popup=True):
IJ.log(msg)
if popup:
IJ.error(msg)
raise e
return False
if resp['status'] != 200:
msg = 'Unknown error verifying server at: ' + uri
if popup:
IJ.error(msg)
raise Exception(msg)
return False
else:
IJ.log('Verified server is online at: ' + uri)
......
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