Update httpstatus documentation.

This commit is contained in:
Jose Galdos 2020-08-21 12:16:37 -05:00
parent 13181ba788
commit a41c205928
1 changed files with 2 additions and 1 deletions

View File

@ -255,7 +255,8 @@ this::
The ``handle_httpstatus_list`` key of :attr:`Request.meta
<scrapy.http.Request.meta>` can also be used to specify which response codes to
allow on a per-request basis. You can also set the meta key ``handle_httpstatus_all``
to ``True`` if you want to allow any response code for a request.
to ``True`` if you want to allow any response code for a request, and ``False`` to
disable the effects of the ``handle_httpstatus_all`` key.
Keep in mind, however, that it's usually a bad idea to handle non-200
responses, unless you really know what you're doing.