Keyword arguments when creating a _ResponseReader

This commit is contained in:
Eugenio Lacuesta 2020-02-10 10:16:05 -03:00
parent 6f02a8dccb
commit a64fa2f086
No known key found for this signature in database
GPG Key ID: DA3EF2D0913E9810
1 changed files with 8 additions and 8 deletions

View File

@ -417,14 +417,14 @@ class ScrapyAgent:
d = defer.Deferred(_cancel)
txresponse.deliverBody(
_ResponseReader(
d,
txresponse,
request,
maxsize,
warnsize,
fail_on_dataloss,
self._crawler,
self._source,
finished=d,
txresponse=txresponse,
request=request,
maxsize=maxsize,
warnsize=warnsize,
fail_on_dataloss=fail_on_dataloss,
crawler=self._crawler,
source=self._source,
)
)