From 6f2ba3c635c06edb4b1fbd1f0320c1164f8cbc6e Mon Sep 17 00:00:00 2001 From: Zawadi Done Date: Wed, 13 Sep 2023 12:42:10 +0200 Subject: [PATCH] Do not show the password in the logging (#13) --- timesketch/tsctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timesketch/tsctl.py b/timesketch/tsctl.py index f19dca1004..71578028c0 100644 --- a/timesketch/tsctl.py +++ b/timesketch/tsctl.py @@ -82,7 +82,7 @@ def get_password_from_prompt(): user.set_password(plaintext=password) db_session.add(user) db_session.commit() - print(f"User account for {username} created/updated") + print(f"User {username} created/updated") @cli.command(name="enable-user")