Skip to content

Commit

Permalink
Fixed signin form error in views.
Browse files Browse the repository at this point in the history
  • Loading branch information
fengsi committed Sep 20, 2012
1 parent 957944d commit ebd23dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userena/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def signin(request, auth_form=AuthenticationForm,
Form used for authentication supplied by ``auth_form``.
"""
form = auth_form
form = auth_form()

if request.method == 'POST':
form = auth_form(request.POST, request.FILES)
Expand Down

0 comments on commit ebd23dd

Please sign in to comment.