Fix minor typo in DownloaderHandlers comment

This commit is contained in:
Julia Medina 2014-03-12 22:33:42 -03:00
parent efb86f966d
commit 6573459481
1 changed files with 1 additions and 1 deletions

View File

@ -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)