From 16e76c4e8cc0b558fa3f92551de06907db231199 Mon Sep 17 00:00:00 2001 From: Stephen Burrows Date: Fri, 10 Jun 2011 14:59:50 -0400 Subject: [PATCH] Hotfix correction of SOBOL_USE_CACHE setting fetching. --- philo/contrib/sobol/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.20.1