JOHN STETIC
2019-02-20 20:43:00 -05:00
parent d148f9b900
commit 57ab5ce1a2

View File

@@ -445,7 +445,8 @@ def _get_response(request, auth, template):
except HTTPError as exc:
errors, should_continue = _request_http_error(exc, auth, errors) # noqa
r = exc
except URLError:
except URLError as e:
log_error(e.reason)
should_continue = _request_url_error(template, retry_timeout)
if not should_continue:
raise