From: Zac Medico Date: Tue, 2 Mar 2010 20:06:50 +0000 (-0000) Subject: Bug #295197 - Output a newline after valid user input is received. X-Git-Tag: v2.1.8~170 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=632ce633ff343542f1f3124488b59dfd59731182;p=portage.git Bug #295197 - Output a newline after valid user input is received. (trunk r15317) svn path=/main/branches/2.1.7/; revision=15552 --- diff --git a/bin/dispatch-conf b/bin/dispatch-conf index 59fa10362..fa8ca9200 100755 --- a/bin/dispatch-conf +++ b/bin/dispatch-conf @@ -246,6 +246,8 @@ class dispatch: while True: c = getch() if c in valid_input: + sys.stdout.write('\n') + sys.stdout.flush() break if c == 'q':