From e28d48a8bd37829b90f7600e030dad8d589c6a80 Mon Sep 17 00:00:00 2001 From: Alen Mujezinovic Date: Tue, 23 Feb 2010 10:57:44 +0000 Subject: [PATCH] Typo fix --- socialregistration/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/socialregistration/views.py b/socialregistration/views.py index ed0286a..2c2eefd 100644 --- a/socialregistration/views.py +++ b/socialregistration/views.py @@ -289,7 +289,7 @@ def openid_callback(request, template='socialregistration/openid.html', if request.user.is_authenticated(): # Handling already logged in users just connecting their accounts try: - profile = OpenIDProfile.objects.get(identity=request.GET.get('ppenid.claimed_id')) + profile = OpenIDProfile.objects.get(identity=request.GET.get('openid.claimed_id')) except OpenIDProfile.DoesNotExist: # There can only be one profile with the same identity profile = OpenIDProfile.objects.create(user=request.user, identity=request.GET.get('openid.claimed_id'))