hgext/evolve.py
changeset 1688 031682c1faa2
parent 1687 73e0018c423f
child 1689 60752ed8d2d4
--- 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]