evolve: add the missing newline to output messages where needed
authorMatt Harbison <matt_harbison@yahoo.com>
Mon, 29 Sep 2014 21:31:27 -0400
changeset 1145 fb51113a1c08
parent 1144 b2a78b950a51
child 1146 3de3d85069fd
child 1158 0f6c97421cd9
evolve: add the missing newline to output messages where needed
hgext/evolve.py
--- a/hgext/evolve.py	Mon Sep 29 21:23:09 2014 -0400
+++ b/hgext/evolve.py	Mon Sep 29 21:31:27 2014 -0400
@@ -800,7 +800,7 @@
             commitmsg = commitmsg.replace(sha1, newsha1[:len(sha1)])
         else:
             repo.ui.note(_('The stale commit message reference to %s could '
-                           'not be updated') % sha1)
+                           'not be updated\n') % sha1)
 
     tr = repo.transaction('relocate')
     try:
@@ -1321,7 +1321,7 @@
     # search of a parent which is not killed
     while not newer or newer == [()]:
         ui.debug("stabilize target %s is plain dead,"
-                 " trying to stabilize on its parent" %
+                 " trying to stabilize on its parent\n" %
                  obs)
         obs = obs.parents()[0]
         newer = obsolete.successorssets(repo, obs.node())