diff --git a/compressor/conf.py b/compressor/conf.py index 1211ca4..3613166 100644 --- a/compressor/conf.py +++ b/compressor/conf.py @@ -73,7 +73,7 @@ class CompressorConf(AppConf): value = getattr(settings, 'STATIC_ROOT', None) if not value: value = settings.MEDIA_ROOT - if not value: + if value is None: raise ImproperlyConfigured("COMPRESS_ROOT setting must be set") return os.path.normcase(os.path.abspath(value))