# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1522321680 -19800 # Node ID ed50f10aacbdac7f78c74330befd755b6a38f1c3 # Parent 5a127bc2741905a18275e445caed3ff7f523c7e1 evolve: don't allow updating or commiting when there is interrupted evolve We should make things simple in the starting and restrict user from doing things which can lead to problems. This is same as the rebase behavior. diff -r 5a127bc27419 -r ed50f10aacbd hgext3rd/evolve/__init__.py --- a/hgext3rd/evolve/__init__.py Wed Mar 28 17:47:49 2018 +0530 +++ b/hgext3rd/evolve/__init__.py Thu Mar 29 16:38:00 2018 +0530 @@ -1340,7 +1340,7 @@ @eh.uisetup def setupevolveunfinished(ui): - data = ('evolvestate', True, False, _('evolve in progress'), + data = ('evolvestate', False, False, _('evolve in progress'), _("use 'hg evolve --continue' or 'hg update -C .' to abort")) cmdutil.unfinishedstates.append(data)