From 426e0db6afb23c99a4f3d0d713417595e736b95b Mon Sep 17 00:00:00 2001 From: Wes Winham Date: Wed, 29 Jan 2014 15:29:13 -0500 Subject: [PATCH] Removed liar comment RE: smart cache default The smart cache defaults to enabled. --- authority/permissions.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/authority/permissions.py b/authority/permissions.py index 7cc55d1..e19200f 100644 --- a/authority/permissions.py +++ b/authority/permissions.py @@ -194,8 +194,6 @@ class BasePermission(object): @property def use_smart_cache(self): - # AUTHORITY_USE_SMART_CACHE defaults to False to maintain backwards - # compatibility. use_smart_cache = getattr(settings, 'AUTHORITY_USE_SMART_CACHE', True) return (self.user or self.group) and use_smart_cache