Dependency Reconcilliation

Fresh installs seem to have dependency
issues, this fixes Horizon to explicitly
state which parser to use, as django-
compress incorrectly tries to use a
compressor that is not installed on some
fresh installs.

Fixes bug #1010968

Change-Id: I62ac5fd43b846cf967077e0a3d1e16db5861223c
This commit is contained in:
John Postlethwait
2012-06-11 14:20:32 -07:00
parent 2bae084412
commit 375102d7be

View File

@@ -104,6 +104,7 @@ COMPRESS_CSS_FILTERS = (
COMPRESS_ENABLED = True
COMPRESS_OUTPUT_DIR = 'dashboard'
COMPRESS_CSS_HASHING_METHOD = 'hash'
COMPRESS_PARSER = 'compressor.parser.HtmlParser'
INSTALLED_APPS = (
'openstack_dashboard',