From ac2fadf3abb178d1a72b48944fcedd9bfc7d188c Mon Sep 17 00:00:00 2001 From: Mikhail Korobov Date: Mon, 8 Jul 2013 19:41:58 +0600 Subject: [PATCH] DownloaderMiddleware.process_response docs fix "returns an exception" -> "raises an exception" --- docs/topics/downloader-middleware.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/downloader-middleware.rst b/docs/topics/downloader-middleware.rst index c6a189055..64f0eb953 100644 --- a/docs/topics/downloader-middleware.rst +++ b/docs/topics/downloader-middleware.rst @@ -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