Submitter | Augie Fackler |
---|---|
Date | May 19, 2017, 9:39 p.m. |
Message ID | <d915f006acf67a7f8f57.1495229959@augie-macbookpro2.roam.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/20747/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -2167,7 +2167,7 @@ def debugupgraderepo(ui, repo, run=False 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