mirror of https://github.com/scrapy/scrapy.git
typo fix in scrapy.contrib.pipeline.media
This commit is contained in:
parent
d14c972ed9
commit
da90449edf
|
|
@ -117,7 +117,7 @@ class MediaPipeline(object):
|
|||
def item_completed(self, results, item, info):
|
||||
"""Called per item when all media requests has been processed"""
|
||||
if self.LOG_FAILED_RESULTS:
|
||||
msg = '%s found errors proessing %s' % (self.__class__.__name__, item)
|
||||
msg = '%s found errors processing %s' % (self.__class__.__name__, item)
|
||||
for ok, value in results:
|
||||
if not ok:
|
||||
log.err(value, msg, spider=info.spider)
|
||||
|
|
|
|||
Loading…
Reference in New Issue