Bug #295197 - Output a newline after valid user input is received.
authorZac Medico <zmedico@gentoo.org>
Tue, 2 Mar 2010 20:06:50 +0000 (20:06 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 2 Mar 2010 20:06:50 +0000 (20:06 -0000)
(trunk r15317)

svn path=/main/branches/2.1.7/; revision=15552

bin/dispatch-conf

index 59fa10362ec444617234336ae603ea336068f8af..fa8ca92009b5ac32d189eb629684ece077746b81 100755 (executable)
@@ -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':