From ddd9e05a18138b39dba4d66ec93b132d3d24efb6 Mon Sep 17 00:00:00 2001 From: Yohanna Lisnichuk Date: Tue, 30 Jun 2020 09:20:39 -0400 Subject: [PATCH] Fix chile base to include callback on page request Signed-off-by: Yohanna Lisnichuk --- kingfisher_scrapy/spiders/chile_base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kingfisher_scrapy/spiders/chile_base.py b/kingfisher_scrapy/spiders/chile_base.py index 77d1b3dd..4e3a8b25 100644 --- a/kingfisher_scrapy/spiders/chile_base.py +++ b/kingfisher_scrapy/spiders/chile_base.py @@ -73,5 +73,6 @@ def parse_list(self, response): meta={ 'year': year, 'month': month, - } + }, + callback=self.parse_list )