mirror of https://github.com/scrapy/scrapy.git
Fix minor typo in DownloaderHandlers comment
This commit is contained in:
parent
efb86f966d
commit
6573459481
|
|
@ -16,7 +16,7 @@ class DownloadHandlers(object):
|
|||
handlers.update(crawler.settings.get('DOWNLOAD_HANDLERS', {}))
|
||||
for scheme, clspath in handlers.iteritems():
|
||||
# Allow to disable a handler just like any other
|
||||
# component (extension, middlware, etc).
|
||||
# component (extension, middleware, etc).
|
||||
if clspath is None:
|
||||
continue
|
||||
cls = load_object(clspath)
|
||||
|
|
|
|||
Loading…
Reference in New Issue