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
parent ec1c61504a
commit f193c52acd
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'