fix very stupid mistake

master
Lio Novelli 2022-02-02 20:45:40 +01:00
parent b69869a040
commit 1124d81489
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class GFontsSpider(scrapy.Spider):
return True
def findGFonts(self, response):
for links in response.css('head links'):
for links in response.css('head link'):
if 'fonts.googleapis.com' in links.attrib['href']:
yield {
'url': response.url,