mercurial/debugcommands.py
changeset 32363 a275186b989a
parent 32337 46ba2cdda476
child 32367 a9c71d578a1c
--- a/mercurial/debugcommands.py	Thu May 18 18:00:52 2017 -0400
+++ b/mercurial/debugcommands.py	Thu May 18 18:01:01 2017 -0400
@@ -2168,7 +2168,7 @@
 def debugwalk(ui, repo, *pats, **opts):
     """show how files match on given patterns"""
     m = scmutil.match(repo[None], pats, opts)
-    items = list(repo.walk(m))
+    items = list(repo[None].walk(m))
     if not items:
         return
     f = lambda fn: fn