--- a/hgext/evolve.py Mon May 02 18:21:54 2016 +0200
+++ b/hgext/evolve.py Mon May 02 18:24:36 2016 +0200
@@ -3221,14 +3221,14 @@
if opts['fold']:
root, head = _foldcheck(repo, revs)
else:
+ if repo.revs("%ld and public()", revs):
+ raise error.Abort(_('cannot edit commit information for public '
+ 'revisions'))
newunstable = _disallowednewunstable(repo, revs)
if newunstable:
raise error.Abort(
_('cannot edit commit information in the middle of a stack'),
hint=_('%s will be affected') % repo[newunstable.first()])
- if repo.revs("%ld and public()", revs):
- raise error.Abort(_('cannot edit commit information for public '
- 'revisions'))
root = head = repo[revs.first()]
wctx = repo[None]