From: Zac Medico Date: Tue, 2 Feb 2010 21:04:34 +0000 (-0000) Subject: Bug #295197 - Output a newline after valid user input is received. X-Git-Tag: v2.2_rc63~79 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=4e93b4cfc796e2b156a5d6a479461f94d21bf9a4;p=portage.git Bug #295197 - Output a newline after valid user input is received. svn path=/main/trunk/; revision=15317 --- 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':