Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cecicasco committed Dec 29, 2021
1 parent a96d80c commit 87076ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kingfisher_scrapy/spiders/europe_dynamic_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,5 @@ def parse_list(self, response):
url_date = datetime.datetime(year, month, 1)
if not (self.from_date <= url_date <= self.until_date):
continue
yield self.build_request(f'{self.base_url}{path}', formatter=join(components(-2), extension='zip'), priority=number * -1)
yield self.build_request(f'{self.base_url}{path}', formatter=join(components(-2), extension='zip'),
priority=number * -1)

0 comments on commit 87076ae

Please sign in to comment.