From 11b460eaa01a25b7b077d67745b46ee3d436e2e3 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 6 Jun 2014 13:06:42 -0400 Subject: [PATCH] Fix repo names. --- bitshift/crawler/crawler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitshift/crawler/crawler.py b/bitshift/crawler/crawler.py index 655725f..ba04412 100644 --- a/bitshift/crawler/crawler.py +++ b/bitshift/crawler/crawler.py @@ -86,8 +86,8 @@ class GitHubCrawler(threading.Thread): time.sleep(1) self.clone_queue.put(indexer.GitRepository( - repo["html_url"], repo["full_name"].replace("/", ""), - "GitHub", repo_ranks[repo["full_name"]])) + repo["html_url"], repo["full_name"], "GitHub", + repo_ranks[repo["full_name"]])) if int(resp.headers["x-ratelimit-remaining"]) == 0: time.sleep(int(resp.headers["x-ratelimit-reset"]) -