Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 1947:65aff2ed61ae
fix the call to util.matcher (the args should be (reporoot, cwd, ...))
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Mon, 13 Mar 2006 23:32:57 +0100 |
parents | 36c6e4c3ff43 |
children | d53a18f592be |
line wrap: on
line diff
--- 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