mirror of https://github.com/scrapy/scrapy.git
Merge pull request #227 from tonal/correct-old-cache
Correct init bag for load FilesystemCacheStorage from old location
This commit is contained in:
commit
65258e3621
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue