1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-25 07:24:09 +00:00

Correct init bag for load old scrapy.contrib.httpcache.FilesystemCacheStorage

This commit is contained in:
Alexandr N Zamaraev (aka tonal) 2013-01-21 13:54:36 +07:00
parent 6ab8afb992
commit 2c51266a40

View File

@ -100,4 +100,4 @@ class FilesystemCacheStorage(_FilesystemCacheStorage):
'scrapy.contrib.downloadermiddlware.httpcache is '
'deprecated, use scrapy.contrib.httpcache instead.',
category=ScrapyDeprecationWarning, stacklevel=1)
super(_FilesystemCacheStorage, self).__init__(*args, **kwargs)
super(FilesystemCacheStorage, self).__init__(*args, **kwargs)