Bug #295197 - Output a newline after valid user input is received.
authorZac Medico <zmedico@gentoo.org>
Tue, 2 Feb 2010 21:04:34 +0000 (21:04 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 2 Feb 2010 21:04:34 +0000 (21:04 -0000)
svn path=/main/trunk/; revision=15317

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':