From 1a60f6c1cb6afb58a358d4505753a7a4c3e0caa6 Mon Sep 17 00:00:00 2001 From: Daniel Grana Date: Tue, 25 Nov 2008 13:44:06 +0000 Subject: [PATCH] comment default thumb sizes --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40418 --- scrapy/trunk/scrapy/contrib/pipeline/s3images.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scrapy/trunk/scrapy/contrib/pipeline/s3images.py b/scrapy/trunk/scrapy/contrib/pipeline/s3images.py index 92981316a..2c95e10fe 100644 --- a/scrapy/trunk/scrapy/contrib/pipeline/s3images.py +++ b/scrapy/trunk/scrapy/contrib/pipeline/s3images.py @@ -21,9 +21,9 @@ from .images import BaseImagesPipeline, NoimagesDrop, ImageException class S3ImagesPipeline(BaseImagesPipeline): MEDIA_TYPE = 'image' THUMBS = ( - ("50", (50, 50)), - ("110", (110, 110)), - ("270", (270, 270)) +# ('50', (50, 50)), +# ('110', (110, 110)), +# ('270', (270, 270)) ) def __init__(self):