# HG changeset patch # User timeless@gmail.com # Date 1460605368 0 # Node ID bbf897714e70529923c1b1ccca181a49c9adb747 # Parent ff0ff0f28a139f669f9eaed65985cd9f697c4cf2 evolve: add --continue note to summary diff -r ff0ff0f28a13 -r bbf897714e70 hgext/evolve.py --- a/hgext/evolve.py Thu Apr 14 15:03:18 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):