Hotfix correction of SOBOL_USE_CACHE setting fetching.
authorStephen Burrows <stephen.r.burrows@gmail.com>
Fri, 10 Jun 2011 18:59:50 +0000 (14:59 -0400)
committerStephen Burrows <stephen.r.burrows@gmail.com>
Fri, 10 Jun 2011 18:59:50 +0000 (14:59 -0400)
philo/contrib/sobol/search.py

index 5f5fddc..eb2a333 100644 (file)
@@ -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):