Mercurial > evolve
changeset 1145:fb51113a1c08
evolve: add the missing newline to output messages where needed
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Mon, 29 Sep 2014 21:31:27 -0400 |
parents | b2a78b950a51 |
children | 3de3d85069fd 0f6c97421cd9 |
files | hgext/evolve.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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())