From f6f077b78978269284b2bc17d63f003a770c314f Mon Sep 17 00:00:00 2001 From: Nicolas Dandrimont Date: Mon, 4 Sep 2017 17:42:20 +0200 Subject: [PATCH] github.tasks: the github api is rooted at api.github.com --- swh/lister/github/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swh/lister/github/tasks.py b/swh/lister/github/tasks.py index fdc5a68..ef88c5d 100644 --- a/swh/lister/github/tasks.py +++ b/swh/lister/github/tasks.py @@ -12,7 +12,7 @@ from .lister import GitHubLister class GitHubListerTask(ListerTaskBase): def new_lister(self): return GitHubLister(lister_name='github.com', - api_baseurl='https://github.com') + api_baseurl='https://api.github.com') class IncrementalGitHubLister(GitHubListerTask, IndexingDiscoveryListerTask):