From 0bafba5ad819e9785b7790f5d5522d79b34aabca Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Thu, 9 Mar 2017 17:38:15 +0100 Subject: [PATCH] Do not only warn on wrong spider modules for "scrapy list" --- scrapy/commands/list.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scrapy/commands/list.py b/scrapy/commands/list.py index 185a77a40..a255b3b94 100644 --- a/scrapy/commands/list.py +++ b/scrapy/commands/list.py @@ -4,8 +4,7 @@ from scrapy.commands import ScrapyCommand class Command(ScrapyCommand): requires_project = True - default_settings = {'LOG_ENABLED': False, - 'SPIDER_LOADER_WARN_ONLY': True} + default_settings = {'LOG_ENABLED': False} def short_desc(self): return "List available spiders"