diff -r 2d5b991c2192 -r 705738def50c hgext/split.py --- a/hgext/split.py Thu Nov 14 15:25:40 2019 -0500 +++ b/hgext/split.py Thu Nov 14 15:25:48 2019 -0500 @@ -152,7 +152,9 @@ scmutil.movedirstate(repo, ctx.p1()) # Any modified, added, removed, deleted result means split is incomplete - incomplete = lambda repo: any(repo.status()[:4]) + def incomplete(repo): + st = repo.status() + return any((st.modified, st.added, st.removed, st.deleted)) # Main split loop while incomplete(repo):