Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flashingpumpkin committed Feb 23, 2010
1 parent 761d46f commit e28d48a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion socialregistration/views.py
Expand Up @@ -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'))
Expand Down

0 comments on commit e28d48a

Please sign in to comment.