From 7af94be3a9e635cc2e9f305b0f45e82063b2f90c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gra=C3=B1a?= Date: Thu, 20 Jun 2013 10:56:48 -0300 Subject: [PATCH] fix helpers used to sign S3 requests with boto connections --- scrapy/core/downloader/handlers/s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/core/downloader/handlers/s3.py b/scrapy/core/downloader/handlers/s3.py index 4986464a6..4c335e2c6 100644 --- a/scrapy/core/downloader/handlers/s3.py +++ b/scrapy/core/downloader/handlers/s3.py @@ -15,7 +15,7 @@ class _v19_S3Connection(S3Connection): class _v20_S3Connection(S3Connection): """A dummy S3Connection wrapper that doesn't do any syncronous download""" - def _mexe(self, http_request, *args): + def _mexe(self, http_request, *args, **kwargs): http_request.authorize(connection=self) return http_request.headers