From patchwork Thu Apr 14 15:05:20 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [5,of,7,evolve-ext] evolve: add --continue note to summary From: timeless@gcc2-power8.osuosl.org X-Patchwork-Id: 14610 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Thu, 14 Apr 2016 15:05:20 +0000 # HG changeset patch # User timeless@gmail.com # Date 1460605368 0 # Thu Apr 14 03:42:48 2016 +0000 # Node ID be067a5d1228c19f22010e0aa537b434a096cbe7 # Parent 48cb89ebf3625ad386be7d1941b725b8e64d5db9 # Available At https://bitbucket.org/timeless/mutable-history/ # hg pull https://bitbucket.org/timeless/mutable-history/ -r be067a5d1228 evolve: add --continue note to summary diff -r 48cb89ebf362 -r be067a5d1228 hgext/evolve.py --- a/hgext/evolve.py Thu Apr 14 03:42:13 2016 +0000 +++ b/hgext/evolve.py Thu Apr 14 03:42:48 2016 +0000 @@ -781,6 +781,10 @@ else: # In 3.6.2, summary in core gained this feature, no need to display it pass + state = _evolvestateread(repo) + if state is not None: + # i18n: column positioning for "hg summary" + ui.write(_('evolve: (evolve --continue)\n')) @eh.extsetup def obssummarysetup(ui):