From 16af5284112b373f590d1b6263b34be1a0131a82 Mon Sep 17 00:00:00 2001 From: Domingo Dirutigliano Date: Wed, 12 Apr 2023 11:07:42 +0200 Subject: [PATCH] print fixes --- start.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/start.py b/start.py index 8977720..b026a5d 100755 --- a/start.py +++ b/start.py @@ -93,12 +93,12 @@ if start_operation: psw_set = args.psw_no_interactive elif not args.startup_psw: while True: - puts("Insert the password for firegex: ", end="" , color=colors.yellow, is_bold=True) + puts("Insert the password for firegex: ", end="" , color=colors.yellow, is_bold=True, flush=True) psw_set = getpass.getpass("") - puts("Confirm the password: ", end="" , color=colors.yellow, is_bold=True) + puts("Confirm the password: ", end="" , color=colors.yellow, is_bold=True, flush=True) check = getpass.getpass("") if check != psw_set: - puts("Passwords don't match!", end="" , color=colors.yellow, is_bold=True) + puts("Passwords don't match!" , color=colors.yellow, is_bold=True, flush=True) else: break