Fix IMAGES_EXPIRES default value

The default value should be 90.
This commit is contained in:
Jesús Losada 2016-07-22 19:47:29 +02:00 committed by Paul Tremberth
parent d9cb27a94c
commit 77ce43b5c4
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class ImagesPipeline(FilesPipeline):
# ImagesPipeline. They may be overridden by settings.
MIN_WIDTH = 0
MIN_HEIGHT = 0
EXPIRES = 0
EXPIRES = 90
THUMBS = {}
DEFAULT_IMAGES_URLS_FIELD = 'image_urls'
DEFAULT_IMAGES_RESULT_FIELD = 'images'