mirror of https://github.com/scrapy/scrapy.git
added missing spider argument to log.msg call
This commit is contained in:
parent
87e322e568
commit
55d584e478
|
|
@ -135,7 +135,7 @@ class Downloader(object):
|
|||
# downloader middleware, to speed-up the closing process
|
||||
if site.closing:
|
||||
log.msg("Crawled while closing spider: %s" % request, \
|
||||
level=log.DEBUG)
|
||||
level=log.DEBUG, spider=spider)
|
||||
raise IgnoreRequest
|
||||
return _
|
||||
return dfd.addBoth(finish_transferring)
|
||||
|
|
|
|||
Loading…
Reference in New Issue