diff options
author | Mike Chen <chagel@gmail.com> | 2009-08-19 22:02:52 +0800 |
---|---|---|
committer | Mike Chen <chagel@gmail.com> | 2009-08-19 22:02:52 +0800 |
commit | 90dffc13c16494bca294bb2eef2353f970509cad (patch) | |
tree | 6048f8ca8d7e421df86e63fbc8a73386b1c89420 /django_authopenid | |
parent | c928d679ca8513a0d5a64bcd2831fd85bb396bb9 (diff) | |
download | askbot-90dffc13c16494bca294bb2eef2353f970509cad.tar.gz askbot-90dffc13c16494bca294bb2eef2353f970509cad.tar.bz2 askbot-90dffc13c16494bca294bb2eef2353f970509cad.zip |
fix django_authopenid register bug
Diffstat (limited to 'django_authopenid')
-rw-r--r-- | django_authopenid/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django_authopenid/views.py b/django_authopenid/views.py index 1cb8928b..1d072852 100644 --- a/django_authopenid/views.py +++ b/django_authopenid/views.py @@ -367,7 +367,7 @@ def register(request): return render('authopenid/complete.html', { 'form1': form1, 'form2': form2, - 'provider':providers[provider_name], + 'provider':provider_logo, 'nickname': nickname, 'email': email }, context_instance=RequestContext(request)) |