From c86163bfe6294cfeda21b284d46e1f27afb2598f Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 21 Feb 2019 15:40:39 -0500 Subject: [PATCH] fix: warn instead of error Refs #106 --- bin/github-backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/github-backup b/bin/github-backup index ec8596b..88409de 100755 --- a/bin/github-backup +++ b/bin/github-backup @@ -446,7 +446,7 @@ def _get_response(request, auth, template): errors, should_continue = _request_http_error(exc, auth, errors) # noqa r = exc except URLError as e: - log_error(e.reason) + log_warning(e.reason) should_continue = _request_url_error(template, retry_timeout) if not should_continue: raise