diff mercurial/match.py @ 8566:744d6322b05b

match: change all users of util.matcher to match.match
author Matt Mackall <mpm@selenic.com>
date Sun, 24 May 2009 02:56:14 -0500
parents 39fd67552297
children fea40a677d43
line wrap: on
line diff
--- a/mercurial/match.py	Sat May 23 17:04:41 2009 +0200
+++ b/mercurial/match.py	Sun May 24 02:56:14 2009 -0500
@@ -50,5 +50,5 @@
 class match(_match):
     def __init__(self, root, cwd, patterns, include, exclude, default):
         f, mf, ap = util.matcher(root, cwd, patterns, include, exclude,
-                                 None, default)
+                                 default)
         _match.__init__(self, root, cwd, f, mf, ap)