Merge pull request #338 from kmike/patch-3

DownloaderMiddleware docs fix
This commit is contained in:
Daniel Graña 2013-07-08 07:12:42 -07:00
commit 6db259c075
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ single Python class that defines one or more of the following methods:
download function; it'll return that Response. Response middleware is
always called on every Response.
If it returns an :exc:`~scrapy.exceptions.IgnoreRequest` exception, the
If it raises an :exc:`~scrapy.exceptions.IgnoreRequest` exception, the
entire request will be dropped completely and its callback never called.
:param request: the request being processed
@ -98,7 +98,7 @@ single Python class that defines one or more of the following methods:
If it returns a :class:`~scrapy.http.Request` object, the returned request will be
rescheduled to be downloaded in the future.
If it returns an :exc:`~scrapy.exceptions.IgnoreRequest` exception, the
If it raises an :exc:`~scrapy.exceptions.IgnoreRequest` exception, the
response will be dropped completely and its callback never called.
:param request: the request that originated the response