1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-23 19:24:22 +00:00

Fix typo in media pipeline docs

This commit is contained in:
John O'Connor 2016-10-28 19:44:46 -07:00
parent a7787628ff
commit d85da273be

View File

@ -312,7 +312,7 @@ See here the methods that you can override in your custom Files Pipeline:
By default the :meth:`get_media_requests` method returns ``None`` which By default the :meth:`get_media_requests` method returns ``None`` which
means there are no files to download for the item. means there are no files to download for the item.
.. method:: FilesPipeline.item_completed(results, items, info) .. method:: FilesPipeline.item_completed(results, item, info)
The :meth:`FilesPipeline.item_completed` method called when all file The :meth:`FilesPipeline.item_completed` method called when all file
requests for a single item have completed (either finished downloading, or requests for a single item have completed (either finished downloading, or
@ -355,7 +355,7 @@ See here the methods that you can override in your custom Images Pipeline:
Must return a Request for each image URL. Must return a Request for each image URL.
.. method:: ImagesPipeline.item_completed(results, items, info) .. method:: ImagesPipeline.item_completed(results, item, info)
The :meth:`ImagesPipeline.item_completed` method is called when all image The :meth:`ImagesPipeline.item_completed` method is called when all image
requests for a single item have completed (either finished downloading, or requests for a single item have completed (either finished downloading, or