Need to fix fallback value, in case the list is too short it would fail

This commit is contained in:
Martin Mahner 2014-12-12 20:58:21 +00:00
parent a546cc4d59
commit 4dfab6533a

View file

@ -14,7 +14,7 @@ EXPIRE_CHOICES = getattr(settings, 'DPASTE_EXPIRE_CHOICES', (
(3600 * 24 * 30, _(u'In one month')),
('never', _(u'Never')),
))
EXPIRE_DEFAULT = getattr(settings, 'DPASTE_EXPIRE_DEFAULT', EXPIRE_CHOICES[3][0])
EXPIRE_DEFAULT = getattr(settings, 'DPASTE_EXPIRE_DEFAULT', 3600)
MAX_CONTENT_LENGTH = getattr(settings, 'DPASTE_MAX_CONTENT_LENGTH', 250*1024*1024)
def get_expire_values(expires):