commit f0f0de6e4b24cc4a37cbc243b1353bb86958cccd
parent 2337d9a6687fe50d5c2f4faf3d78d69627a556f7
Author: Marcel <MTRNord@users.noreply.github.com>
Date: Sun, 13 Nov 2016 11:55:42 +0100
Fix header bug
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/__init__.py b/__init__.py
@@ -37,7 +37,7 @@ def _replace(file_path, pattern, subst):
def _parse_onlineRepos(url, ext=''):
logger.debug("parsing github or gitlab or http(s)")
- page = requests.get(url, headers=headers).text
+ page = requests.get(url).text
if 'gitlab.com' in url:
files = []
for json_page in json.loads(page):