diff --git a/scrapy/trunk/scrapy/contrib/spiders/crawl.py b/scrapy/trunk/scrapy/contrib/spiders/crawl.py index 885072e32..185f5cd4f 100644 --- a/scrapy/trunk/scrapy/contrib/spiders/crawl.py +++ b/scrapy/trunk/scrapy/contrib/spiders/crawl.py @@ -107,7 +107,7 @@ class CrawlSpider(BaseSpider): res.extend(self._requests_to_follow(response)) if callback: cb_res = callback(response, **cb_kwargs) or () - cb_res = self.process_results(cb_res, response) + cb_res = self.process_spider_output(cb_res, response) res.extend(cb_res) return res