1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-26 19:03:53 +00:00

fix small bug with parse command

This commit is contained in:
Alexandru Cepoi 2012-06-21 20:06:50 +02:00
parent f4faa19e31
commit 2e05cf5685

View File

@ -154,7 +154,7 @@ class Command(ScrapyCommand):
cb = cb if callable(cb) else getattr(self.spider, cb, None)
if not cb:
log.msg('Cannot find callback %r in spider: %s' % (callback, spider.name))
log.msg('Cannot find callback %r in spider: %s' % (callback, self.spider.name))
# parse items and requests
depth = response.meta['_depth']