From b34ddcf28ca73568ff1a02a02f7ccba7b3dc442e Mon Sep 17 00:00:00 2001 From: Srdjan Grubor <sgnn7@sgnn7.org> Date: Mon, 2 Jun 2014 15:29:22 -0500 Subject: [PATCH] Fix for broken comment retrieval --- update_repos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_repos b/update_repos index b7e6f42..bbdeed3 100755 --- a/update_repos +++ b/update_repos @@ -71,7 +71,7 @@ class AttributeDict(dict): def __setattr__(self, attr, value): self[attr] = value -def read_api_uri(uri, config, page): +def read_api_uri(uri, config, page=1): uri += ACCESS_TOKEN_PARAM % config.token + LISTING_PAGE_PARAM % (LISTINGS_PER_PAGE, page) if config.debug: -- GitLab