Skip to content

Commit

Permalink
Update users.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sumit-kothari committed Apr 9, 2018
1 parent efe1b75 commit 3e841a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flaskbb/cli/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def new_user(username, email, password, group):
def change_user(username, email, password, group):
"""Updates an user. Omit any options to use the interactive mode."""

user = prompt_save_user(username, password, email, group, only_update=True)
user = prompt_save_user(username, email, password, group, only_update=True)
if user is None:
raise FlaskBBCLIError("The user with username {} does not exist."
.format(username), fg="red")
Expand Down

0 comments on commit 3e841a8

Please sign in to comment.