Mercurial > hg-stable
diff mercurial/localrepo.py @ 8567:fea40a677d43
match: add some default args
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 24 May 2009 02:56:14 -0500 |
parents | 744d6322b05b |
children | 1323dddf8078 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Sun May 24 02:56:14 2009 -0500 +++ b/mercurial/localrepo.py Sun May 24 02:56:14 2009 -0500 @@ -528,7 +528,7 @@ for pat, cmd in self.ui.configitems(filter): if cmd == '!': continue - mf = match_.match(self.root, '', [pat], [], [], 'glob') + mf = match_.match(self.root, '', [pat]) fn = None params = cmd for name, filterfn in self._datafilters.iteritems():