mercurial/fileset.py
changeset 38772 af5c0c933af8
parent 38758 774f92710a81
child 38803 4dc498d61d86
--- 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