summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-09-22 18:32:34 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-09-22 18:33:57 -0400
commit98360b7821240c21ec9b7adde155e4bcaf7bfdd5 (patch)
tree95056b3fc1650e7ced17c8351fb5637fdec495f0
parent4b343ee9542435008543b7a2f63cd0550fb2575a (diff)
downloadaskbot-98360b7821240c21ec9b7adde155e4bcaf7bfdd5.tar.gz
askbot-98360b7821240c21ec9b7adde155e4bcaf7bfdd5.tar.bz2
askbot-98360b7821240c21ec9b7adde155e4bcaf7bfdd5.zip
fixed an omission in settings.py template and bumped minor version for pypi
-rw-r--r--askbot/__init__.py2
-rw-r--r--askbot/setup_templates/settings.py5
2 files changed, 5 insertions, 2 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 6c3fac23..8a5c99be 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -22,7 +22,7 @@ def get_version():
"""returns version of the askbot app
this version is meaningful for pypi only
"""
- return '0.6.11'
+ return '0.6.12'
#todo: maybe send_mail functions belong to models
#or the future API
diff --git a/askbot/setup_templates/settings.py b/askbot/setup_templates/settings.py
index 1f01dadd..491d3832 100644
--- a/askbot/setup_templates/settings.py
+++ b/askbot/setup_templates/settings.py
@@ -163,7 +163,10 @@ CACHE_PREFIX = 'askbot' #make this unique
#If you use memcache you may want to uncomment the following line to enable memcached based sessions
#SESSION_ENGINE = 'django.contrib.sessions.backends.cache_db'
-AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend',)
+AUTHENTICATION_BACKENDS = (
+ 'django.contrib.auth.backends.ModelBackend',
+ 'askbot.deps.django_authopenid.backends.AuthBackend',
+)
#this needs to go
USE_EXTERNAL_LEGACY_LOGIN = False #DO NOT USE, and do not delete this line, will be removed later