mercurial/ui.py
branchstable
changeset 15053 17ffb30d9174
parent 15000 68b5d7005cca
child 15054 7c03e3b1b858
child 15062 0fc95f5cea57
--- a/mercurial/ui.py	Thu Aug 25 17:20:00 2011 +0200
+++ b/mercurial/ui.py	Thu Aug 25 22:06:03 2011 +0300
@@ -544,7 +544,7 @@
         # instead of trying to emulate raw_input, swap self.fin with sys.stdin
         old = sys.stdin
         sys.stdin = self.fin
-        line = raw_input()
+        line = raw_input(' ')
         sys.stdin = old
 
         # When stdin is in binary mode on Windows, it can cause
@@ -561,7 +561,7 @@
             self.write(msg, ' ', default, "\n")
             return default
         try:
-            r = self._readline(self.label(msg, 'ui.prompt') + ' ')
+            r = self._readline(self.label(msg, 'ui.prompt'))
             if not r:
                 return default
             return r