mirror of
https://github.com/josegonzalez/python-github-backup.git
synced 2025-12-05 16:18:02 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eff6e36974 | ||
|
|
63e458bafb | ||
|
|
57ab5ce1a2 |
@@ -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)
|
||||
-------------------
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = '0.22.0'
|
||||
__version__ = '0.22.1'
|
||||
|
||||
Reference in New Issue
Block a user