Add missed argument.

This commit is contained in:
Mikhail Sidorov 2018-02-02 00:24:54 +12:00 committed by GitHub
parent 839a116b1b
commit 2bc34431cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ def user_popup(username):
@bp.route('/edit_profile', methods=['GET', 'POST'])
@login_required
def edit_profile():
form = EditProfileForm(request.form)
form = EditProfileForm(urrent_user.username, request.form)
if form.validate_on_submit():
current_user.username = form.username.data
current_user.about_me = form.about_me.data