From: Stephen Burrows Date: Fri, 10 Jun 2011 18:59:50 +0000 (-0400) Subject: Hotfix correction of SOBOL_USE_CACHE setting fetching. X-Git-Tag: philo-0.9~4^2~1^2 X-Git-Url: http://git.ithinksw.org/philo.git/commitdiff_plain/16e76c4e8cc0b558fa3f92551de06907db231199?ds=inline;hp=--cc Hotfix correction of SOBOL_USE_CACHE setting fetching. --- 16e76c4e8cc0b558fa3f92551de06907db231199 diff --git a/philo/contrib/sobol/search.py b/philo/contrib/sobol/search.py index 5f5fddc..eb2a333 100644 --- a/philo/contrib/sobol/search.py +++ b/philo/contrib/sobol/search.py @@ -30,7 +30,7 @@ __all__ = ( SEARCH_CACHE_SEED = 'philo_sobol_search_results' -USE_CACHE = getattr(settings, 'SOBOL_USE_SEARCH', True) +USE_CACHE = getattr(settings, 'SOBOL_USE_CACHE', True) class RegistrationError(Exception):