evolve: add --continue note to summary
authortimeless@gmail.com
Thu, 14 Apr 2016 03:42:48 +0000
changeset 1640 bbf897714e70
parent 1639 ff0ff0f28a13
child 1641 27445da063b7
evolve: add --continue note to summary
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):