diff --git a/01_scrapy/wikipedia_country_scraper/wikipedia_country_scraper/spiders/countrydownloader.py b/01_scrapy/wikipedia_country_scraper/wikipedia_country_scraper/spiders/countrydownloader.py index c168362..1f35d1c 100644 --- a/01_scrapy/wikipedia_country_scraper/wikipedia_country_scraper/spiders/countrydownloader.py +++ b/01_scrapy/wikipedia_country_scraper/wikipedia_country_scraper/spiders/countrydownloader.py @@ -97,7 +97,7 @@ class CountrydownloaderSpider(scrapy.Spider): country_scrapy_item["country_url"] = country_item["country_url"] country_scrapy_item["short_country_name"] = country_item["short_country_name"] - # country_scrapy_item["country"] = country_item["country"] + country_scrapy_item["country"] = country_item["country"] country_scrapy_item["flag_description"] = country_item["flag_description"] country_scrapy_item["anthem"] = country_item["anthem"]