From 29024d8a4c58d70a8671acd6270c4dc2726b15ec Mon Sep 17 00:00:00 2001 From: Daniel Grana Date: Mon, 8 Dec 2008 12:00:30 +0000 Subject: [PATCH] Fix a bug introduced by splitting s3 image uploading to use another downloader slot --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40478 --- scrapy/trunk/scrapy/contrib/pipeline/s3images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/trunk/scrapy/contrib/pipeline/s3images.py b/scrapy/trunk/scrapy/contrib/pipeline/s3images.py index 6aa7cfec3..eb14c7b22 100644 --- a/scrapy/trunk/scrapy/contrib/pipeline/s3images.py +++ b/scrapy/trunk/scrapy/contrib/pipeline/s3images.py @@ -170,6 +170,6 @@ class S3ImagesPipeline(BaseImagesPipeline): """ if self.s3_custom_spider: return scrapyengine.schedule(request, self.s3_custom_spider) - return self.download(request, info.spider) + return self.download(request, info)