# HG changeset patch # User Augie Fackler # Date 1495144861 14400 # Node ID a275186b989a67a440624ac74a39a0b28e4f89cd # Parent 7b3c27af90c2efeea1adc2e603bde353704a3c05 debugcommands: use repo[None].walk instead of repo.walk diff -r 7b3c27af90c2 -r a275186b989a mercurial/debugcommands.py --- 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