This commit is contained in:
Rodney Ewing 2013-06-04 16:50:06 -07:00
parent 8ce8faaf5d
commit dd8ef449e4

View File

@ -94,11 +94,6 @@ def login(request):
if request.method == 'POST':
username = login_form.username.data
if login_form.validate():
user = check_login_simple(username, login_form.password.data)
username = login_form.data['username']
if login_form.validate():
user = check_login_simple(username, login_form.password.data)