- commit
- d73280dc1d4291495444fcd760853877718a2ebe
- parent
- a861a15633ab711c25d45fd992cb1d64ef2248ff
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2017-04-09 19:15
Fix leftover reference to requests
Diffstat
| M | project_stats.py | 2 | +- |
1 files changed, 1 insertions, 1 deletions
diff --git a/project_stats.py b/project_stats.py
@@ -214,7 +214,7 @@ def get_github(url, user=None, password=None): 214 214 def _get_json(url): 215 215 data = yield from get_json(url, user=user, password=password) 216 216 if 'documentation_url' in data:217 -1 raise requests.HTTPError(data['documentation_url'])-1 217 raise aiohttp.ClientError(data['documentation_url']) 218 218 return data 219 219 220 220 @asyncio.coroutine