From a8fb42a5267099cf2fc92d30c8af12de35c6fd39 Mon Sep 17 00:00:00 2001 From: Seblu <sebastien.luttringer@smartjog.com> Date: Mon, 7 Feb 2011 14:28:12 +0100 Subject: [PATCH] fix missing \n after password asking --- cccli/printer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cccli/printer.py b/cccli/printer.py index f4690bf..074bc0d 100644 --- a/cccli/printer.py +++ b/cccli/printer.py @@ -131,6 +131,8 @@ class Printer(object): passwd = raw_input(prompt) finally: termios.tcsetattr(fd, termios.TCSADRAIN, old) + sys.stdout.write(os.linesep) + sys.stdout.flush() return passwd def ask(self, prompt): -- GitLab