Skip to content
Snippets Groups Projects
Commit a8fb42a5 authored by Seblu's avatar Seblu
Browse files

fix missing \n after password asking

parent 1f51db71
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment