hgext/remotefilelog/__init__.py
changeset 42472 d768ca427249
parent 42456 87a34c767384
child 42499 f93762f251d2
--- a/hgext/remotefilelog/__init__.py	Fri Jun 14 18:27:50 2019 +0300
+++ b/hgext/remotefilelog/__init__.py	Fri Jun 14 13:50:06 2019 -0700
@@ -990,9 +990,6 @@
             mf = ctx.manifest()
             sparsematch = repo.maybesparsematch(ctx.rev())
             for path in ctx.walk(match):
-                if path.endswith('/'):
-                    # Tree manifest that's being excluded as part of narrow
-                    continue
                 if (not sparsematch or sparsematch(path)) and path in mf:
                     allfiles.append((path, hex(mf[path])))
         repo.fileservice.prefetch(allfiles)