mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-25 19:14:03 +03:00
fix(settings/production): fix typo s/AWS_EXPIREY/AWS_EXPIRY/g
This commit is contained in:
parent
cdd0cc3a02
commit
b60b01c4fe
|
@ -80,9 +80,8 @@ AWS_EXPIRY = 60 * 60 * 24 * 7
|
|||
# Revert the following and use str after the above-mentioned bug is fixed in
|
||||
# either django-storage-redux or boto
|
||||
AWS_HEADERS = {
|
||||
'Cache-Control': str.encode(
|
||||
'max-age=%d, s-maxage=%d, must-revalidate' % (
|
||||
AWS_EXPIREY, AWS_EXPIREY))
|
||||
'Cache-Control': str.encode('max-age=%d, s-maxage=%d, must-revalidate' % (
|
||||
AWS_EXPIRY, AWS_EXPIRY))
|
||||
}
|
||||
|
||||
# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url
|
||||
|
|
Loading…
Reference in New Issue
Block a user