From patchwork Tue Sep 30 01:33:45 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2, of, 2, evolve-ext, STABLE] evolve: add the missing newline to output messages where needed From: Matt Harbison X-Patchwork-Id: 6034 Message-Id: To: mercurial-devel@selenic.com Date: Mon, 29 Sep 2014 21:33:45 -0400 # HG changeset patch # User Matt Harbison # Date 1412040687 14400 # Mon Sep 29 21:31:27 2014 -0400 # Branch stable # Node ID b3913c5a7fc12597e9ca9f296fc1d1effa495090 # Parent f475deb526a7846cf88d72d3ad9fcfebc051c478 evolve: add the missing newline to output messages where needed diff --git a/hgext/evolve.py b/hgext/evolve.py --- a/hgext/evolve.py +++ b/hgext/evolve.py @@ -934,7 +934,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: @@ -1445,7 +1445,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())