chore: fix incorrect key

This commit is contained in:
2022-06-23 22:51:43 +01:00
parent 71b8cebc42
commit 4a47fd2d35

View File

@@ -90,7 +90,7 @@ class CountrydownloaderSpider(scrapy.Spider):
country_item = {**country_item, "flag_image_url": f"https:{flag_image_xpath}"}
yield scrapy.Request(
url=urls["anthem_file_url"],
url=urls["anthem_page_url"],
callback=self.extract_anthem_file,
cb_kwargs={
"country_item": country_item,