changeset 22783 | 524b786bd54f |
parent 22675 | 4e64d255f1a8 |
child 22836 | 5a831e4e6d7a |
--- a/mercurial/ui.py Fri Oct 03 18:48:09 2014 -0700 +++ b/mercurial/ui.py Wed Oct 08 20:51:01 2014 +0900 @@ -684,7 +684,9 @@ r = default # sometimes self.interactive disagrees with isatty, # show response provided on stdin when simulating - if not util.isatty(self.fin): + # but commandserver + if (not util.isatty(self.fin) + and not self.configbool('ui', 'nontty')): self.write(r, "\n") return r except EOFError: