Explicit keyword arguments

This commit is contained in:
Eugenio Lacuesta 2019-12-23 09:52:55 -03:00
parent 931b7e68d3
commit 342bf3cd35
No known key found for this signature in database
GPG Key ID: DA3EF2D0913E9810
1 changed files with 3 additions and 3 deletions

View File

@ -50,9 +50,9 @@ class DownloadHandlers(object):
if skip_lazy and getattr(dhcls, 'lazy', True):
return None
dh = create_instance(
dhcls,
self._crawler.settings,
self._crawler,
objcls=dhcls,
settings=self._crawler.settings,
crawler=self._crawler,
)
except NotConfigured as ex:
self._notconfigured[scheme] = str(ex)