mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 09:36:52 +03:00
fix(settings/production): Use python2/3 compatible unicode->btye conversion
This commit is contained in:
parent
efc9fbe961
commit
0cc9958635
|
@ -11,6 +11,7 @@ from __future__ import absolute_import, unicode_literals
|
|||
|
||||
|
||||
from boto.s3.connection import OrdinaryCallingFormat
|
||||
from django.utils import six
|
||||
|
||||
from .common import * # noqa
|
||||
|
||||
|
@ -80,7 +81,7 @@ 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' % (
|
||||
'Cache-Control': six.b('max-age=%d, s-maxage=%d, must-revalidate' % (
|
||||
AWS_EXPIRY, AWS_EXPIRY))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user