mercurial/debugcommands.py
changeset 32457 2def402bd16d
parent 32411 08d02c1d7e67
child 32517 b62b2b373bce
--- a/mercurial/debugcommands.py	Thu May 25 01:45:52 2017 +0200
+++ b/mercurial/debugcommands.py	Mon May 22 11:08:52 2017 -0700
@@ -2125,6 +2125,7 @@
 def debugwalk(ui, repo, *pats, **opts):
     """show how files match on given patterns"""
     m = scmutil.match(repo[None], pats, opts)
+    ui.write(('matcher: %r\n' % m))
     items = list(repo[None].walk(m))
     if not items:
         return