Remove debug line

This commit is contained in:
Vivek Santayana 2022-08-11 12:13:33 +01:00
parent 37ad36da31
commit d4db8692e7

View File

@ -105,7 +105,6 @@ def _reset():
user = _user
break
if not user: return jsonify({'error': 'The user account does not exist.'}), 400
print(user.get_email(),request.form.get('email'),user.get_email() == request.form.get('email'))
if not user.get_email() == request.form.get('email'): return jsonify({'error': 'The email address does not match the user account.'}), 400
return user.reset_password()
return send_errors_to_client(form=form)