diff options
| author | Vainsocial root <root@vainsocial> | 2017-03-12 17:19:35 +0000 |
|---|---|---|
| committer | Vainsocial root <root@vainsocial> | 2017-03-12 17:19:35 +0000 |
| commit | b6cbe23549bec35b89f2ef8474533f76afdef1f9 (patch) | |
| tree | 5aa7b132bca604c037d57203aaabdd3fa25856d8 /crawler.py | |
| parent | 6186dbc0e46df0d4e55f2f8bb179489ae00bfe41 (diff) | |
| download | apigrabber-releases/1.0.0.tar.gz apigrabber-releases/1.0.0.zip | |
do not fail when failingreleases/1.0.0
Diffstat (limited to 'crawler.py')
| -rw-r--r-- | crawler.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ class Crawler(object): retries -= 1 if retries == 0: logging.error("Giving up") - raise ApiError(err) + raise ApiError(str(err)) await asyncio.sleep(5) |
