From 2c51266a40a89f9fff3096d74f074f38961fcfda Mon Sep 17 00:00:00 2001 From: "Alexandr N Zamaraev (aka tonal)" Date: Mon, 21 Jan 2013 13:54:36 +0700 Subject: [PATCH] Correct init bag for load old scrapy.contrib.httpcache.FilesystemCacheStorage --- scrapy/contrib/downloadermiddleware/httpcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/contrib/downloadermiddleware/httpcache.py b/scrapy/contrib/downloadermiddleware/httpcache.py index ebfd14c1c..6a361679e 100644 --- a/scrapy/contrib/downloadermiddleware/httpcache.py +++ b/scrapy/contrib/downloadermiddleware/httpcache.py @@ -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)