Merge pull request #227 from tonal/correct-old-cache

Correct init bag for load FilesystemCacheStorage from old location
This commit is contained in:
Pablo Hoffman 2013-01-21 04:57:19 -08:00
commit 65258e3621
1 changed files with 1 additions and 1 deletions

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)