Merge pull request #5558 from eltociear/patch-1

Fix typo in sep-014.rst
This commit is contained in:
Andrey Rahmatullin 2022-07-17 01:12:16 +05:00 committed by GitHub
commit ebc6f9c4eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -590,11 +590,11 @@ Request Generator
def generate_requests(self, response):
"""
Extract and process new requets from response
Extract and process new requests from response
"""
requests = []
for ext in self._request_extractors:
requets.extend(ext.extract_requests(response))
requests.extend(ext.extract_requests(response))
for proc in self._request_processors:
requests = proc(requests)