# HG changeset patch # User Benoit Boissinot # Date 1142289177 -3600 # Node ID 65aff2ed61aee95e996694defb6de1089cac0058 # Parent d59fc0d4558fadc6b0aea271402842c6d603e7b8 fix the call to util.matcher (the args should be (reporoot, cwd, ...)) diff -r d59fc0d4558f -r 65aff2ed61ae mercurial/localrepo.py --- a/mercurial/localrepo.py Mon Mar 13 18:33:33 2006 +0100 +++ b/mercurial/localrepo.py Mon Mar 13 23:32:57 2006 +0100 @@ -166,7 +166,7 @@ if self.encodepats == None: l = [] for pat, cmd in self.ui.configitems("encode"): - mf = util.matcher("", "/", [pat], [], [])[1] + mf = util.matcher(self.root, "", [pat], [], [])[1] l.append((mf, cmd)) self.encodepats = l @@ -184,7 +184,7 @@ if self.decodepats == None: l = [] for pat, cmd in self.ui.configitems("decode"): - mf = util.matcher("", "/", [pat], [], [])[1] + mf = util.matcher(self.root, "", [pat], [], [])[1] l.append((mf, cmd)) self.decodepats = l