Skip to content

Commit

Permalink
CACHE_BACKEND isnt required in Django 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Dec 20, 2011
1 parent fe86a9a commit 2024983
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nexus_memcache/conf.py
@@ -1,3 +1,3 @@
from django.conf import settings

BACKEND = getattr(settings, 'NEXUS_MEMCACHE_BACKEND', settings.CACHE_BACKEND)
BACKEND = getattr(settings, 'NEXUS_MEMCACHE_BACKEND', getattr(settings, 'CACHE_BACKEND', None))
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@ def run(self, *args, **kwargs):

setup(
name='nexus-memcache',
version='0.3.5',
version='0.3.6',
author='David Cramer',
author_email='dcramer@gmail.com',
url='http://github.com/dcramer/nexus-memcache',
Expand Down

0 comments on commit 2024983

Please sign in to comment.