Skip to content

Commit

Permalink
chg: [website] Updated comment in command line.
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricbonhomme committed Jun 18, 2024
1 parent 0787c95 commit 4013d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/web/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def user_list() -> None:
help="Automatically reply yes to the confirmation message.",
)
def user_delete(login: str, yes: str) -> None:
"""Delete the client specified with its UUID and all the related local stats."""
"""Delete the user specified with its login."""
if yes or click.confirm("Delete the user?"):
try:
user = User.query.filter(User.login == login).first()
Expand Down

0 comments on commit 4013d90

Please sign in to comment.