removed extra argument from check_login_simple in login view
This commit is contained in:
@@ -100,7 +100,7 @@ def login(request):
|
||||
username = login_form.data['username']
|
||||
|
||||
if login_form.validate():
|
||||
user = check_login_simple(username, login_form.password.data, True)
|
||||
user = check_login_simple(username, login_form.password.data)
|
||||
|
||||
if user:
|
||||
# set up login in session
|
||||
|
||||
Reference in New Issue
Block a user