From a005747397b2862a0ca5fa2aaff4779e16a7a6a7 Mon Sep 17 00:00:00 2001 From: Steve Date: Fri, 12 Jun 2015 15:17:31 -0700 Subject: [PATCH] Fixed error with GZIP settings for Google Storage --- storages/backends/gs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storages/backends/gs.py b/storages/backends/gs.py index cfe6512f0..9899bba41 100644 --- a/storages/backends/gs.py +++ b/storages/backends/gs.py @@ -55,7 +55,7 @@ class GSBotoStorage(S3BotoStorage): calling_format = setting('GS_CALLING_FORMAT', SubdomainCallingFormat()) secure_urls = setting('GS_SECURE_URLS', True) file_name_charset = setting('GS_FILE_NAME_CHARSET', 'utf-8') - is_gzipped = setting('GS_IS_GZIPPED', False) + gzip = setting('GS_IS_GZIPPED', False) preload_metadata = setting('GS_PRELOAD_METADATA', False) gzip_content_types = setting('GS_GZIP_CONTENT_TYPES', ( 'text/css',