ui: fix comment about non-interactive prompts
authorMatt Mackall <mpm@selenic.com>
Thu, 02 Oct 2014 18:00:05 -0500
changeset 22675 4e64d255f1a8
parent 22674 06c8b58647b9
child 22676 a014fdc97154
ui: fix comment about non-interactive prompts This fixes my earlier in-flight addition to Mads' change.
mercurial/ui.py
--- a/mercurial/ui.py	Thu Oct 02 23:20:59 2014 +0900
+++ b/mercurial/ui.py	Thu Oct 02 18:00:05 2014 -0500
@@ -683,7 +683,7 @@
             if not r:
                 r = default
             # sometimes self.interactive disagrees with isatty,
-            # show default response
+            # show response provided on stdin when simulating
             if not util.isatty(self.fin):
                 self.write(r, "\n")
             return r