tests: added more verbose message about url reach error

This commit is contained in:
Marcin Kuzminski 2019-07-09 10:23:19 +02:00
parent 29a42b07d5
commit 568a1b0ae2

View file

@ -392,7 +392,7 @@ def is_url_reachable(url):
try:
urllib2.urlopen(url)
except urllib2.URLError:
log.exception('URL Reach error')
log.exception('URL `{}` reach error'.format(url))
return False
return True