Compare commits

..

3 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
eff6e36974 Release version 0.22.1 2019-02-21 15:13:31 -05:00
Jose Diaz-Gonzalez
63e458bafb Merge pull request #106 from jstetic/master
Log URL error
2019-02-21 15:13:02 -05:00
JOHN STETIC
57ab5ce1a2 Log URL error https://github.com/josegonzalez/python-github-backup/issues/105 2019-02-20 20:43:00 -05:00
3 changed files with 9 additions and 2 deletions

View File

@@ -1,6 +1,12 @@
Changelog
=========
0.22.1 (2019-02-21)
-------------------
- Log URL error https://github.com/josegonzalez/python-github-
backup/issues/105. [JOHN STETIC]
0.22.0 (2019-02-01)
-------------------

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

View File

@@ -1 +1 @@
__version__ = '0.22.0'
__version__ = '0.22.1'