summaryrefslogtreecommitdiffstats
path: root/askbot/deps
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-15 01:07:35 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-15 01:07:35 -0400
commit2ea1b1fcfa30d615054b407a4d38d053615a42e9 (patch)
tree87ce9b3f05d7cfdf956182f27511c27f7109cac7 /askbot/deps
parentea95d8e458a6f0b6bf837a5152e4f0fb0c6a5866 (diff)
downloadaskbot-2ea1b1fcfa30d615054b407a4d38d053615a42e9.tar.gz
askbot-2ea1b1fcfa30d615054b407a4d38d053615a42e9.tar.bz2
askbot-2ea1b1fcfa30d615054b407a4d38d053615a42e9.zip
added twitter fields to the auth_user model
Diffstat (limited to 'askbot/deps')
-rw-r--r--askbot/deps/django_authopenid/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/deps/django_authopenid/views.py b/askbot/deps/django_authopenid/views.py
index 9ddb6414..a3762dbb 100644
--- a/askbot/deps/django_authopenid/views.py
+++ b/askbot/deps/django_authopenid/views.py
@@ -559,7 +559,7 @@ def signin(request, template_name='authopenid/signin.html'):
request.session['oauth_provider_name'] = provider_name
request.session['next_url'] = next_url#special case for oauth
- oauth_url = connection.get_auth_url(login_only = False)
+ oauth_url = connection.get_auth_url(login_only=True)
return HttpResponseRedirect(oauth_url)
except util.OAuthError, e: