diff -r 3bd22c4d3711 -r af5c0c933af8 mercurial/fileset.py --- a/mercurial/fileset.py Fri Jul 27 14:47:38 2018 -0700 +++ b/mercurial/fileset.py Fri Jul 27 14:48:06 2018 -0700 @@ -647,11 +647,10 @@ unknown = _intree(['unknown'], tree) ignored = _intree(['ignored'], tree) - r = ctx.repo() if basectx is None: basectx = ctx.p1() - return r.status(basectx, ctx, - unknown=unknown, ignored=ignored, clean=True) + return basectx.status(ctx, listunknown=unknown, listignored=ignored, + listclean=True) else: return None