hgext/sparse.py
changeset 33372 4481f1fd27b1
parent 33371 c6415195fa78
child 33373 fb320398a21c
--- a/hgext/sparse.py	Sat Jul 08 14:15:07 2017 -0700
+++ b/hgext/sparse.py	Sat Jul 08 15:42:11 2017 -0700
@@ -265,10 +265,9 @@
             repo = self.repo
             sparsematch = sparse.matcher(repo)
             if not sparsematch.always():
-                dirstate = repo.dirstate
                 for f in args:
                     if (f is not None and not sparsematch(f) and
-                        f not in dirstate):
+                        f not in self):
                         raise error.Abort(_("cannot add '%s' - it is outside "
                                             "the sparse checkout") % f,
                                           hint=hint)