##// END OF EJS Templates
tests: added more verbose message about url reach error
marcink -
r3808:aa7b4a0e stable
parent child Browse files
Show More
@@ -392,7 +392,7 b' def is_url_reachable(url):'
392 try:
392 try:
393 urllib2.urlopen(url)
393 urllib2.urlopen(url)
394 except urllib2.URLError:
394 except urllib2.URLError:
395 log.exception('URL Reach error')
395 log.exception('URL `{}` reach error'.format(url))
396 return False
396 return False
397 return True
397 return True
398
398
General Comments 0
You need to be logged in to leave comments. Login now