mercurial/filemerge.py
changeset 8566 744d6322b05b
parent 8312 b87a50b7125c
child 8567 fea40a677d43
--- a/mercurial/filemerge.py	Sat May 23 17:04:41 2009 +0200
+++ b/mercurial/filemerge.py	Sun May 24 02:56:14 2009 -0500
@@ -7,7 +7,7 @@
 
 from node import short
 from i18n import _
-import util, simplemerge
+import util, simplemerge, match
 import os, tempfile, re, filecmp
 
 def _toolstr(ui, tool, part, default=""):
@@ -55,7 +55,7 @@
 
     # then patterns
     for pat, tool in ui.configitems("merge-patterns"):
-        mf = util.matcher(repo.root, "", [pat], [], [])[1]
+        mf = match.match(repo.root, '', [pat], [], [], 'glob')
         if mf(path) and check(tool, pat, symlink, False):
                 toolpath = _findtool(ui, tool)
                 return (tool, '"' + toolpath + '"')