Skip to content

Commit

Permalink
typo fix in scrapy.contrib.pipeline.media
Browse files Browse the repository at this point in the history
  • Loading branch information
kmike committed Mar 18, 2015
1 parent d14c972 commit da90449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapy/contrib/pipeline/media.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def media_failed(self, failure, request, info):
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)
Expand Down

0 comments on commit da90449

Please sign in to comment.