hgext/evolve.py
branchstable
changeset 552 f7e54d4a3b90
parent 551 38fbcc760ec6
child 553 e29561d918a6
--- a/hgext/evolve.py	Tue Sep 11 12:19:13 2012 +0200
+++ b/hgext/evolve.py	Tue Sep 11 12:30:22 2012 +0200
@@ -916,6 +916,8 @@
     priorlatecomers = len(repo.revs('latecomer()'))
     priorconflictings = len(repo.revs('conflicting()'))
     ret = orig(ui, repo, *args, **kwargs)
+    # workaround phase stupidity
+    phases._filterunknown(ui, repo.changelog, repo._phasecache.phaseroots)
     newunstables = len(repo.revs('unstable()')) - priorunstables
     newlatecomers = len(repo.revs('latecomer()')) - priorlatecomers
     newconflictings = len(repo.revs('conflicting()')) - priorconflictings