diff hgext/acl.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 cc7da5aae4cd
line wrap: on
line diff
--- a/hgext/acl.py	Sun May 24 02:56:14 2009 -0500
+++ b/hgext/acl.py	Sun May 24 02:56:14 2009 -0500
@@ -60,7 +60,7 @@
     ui.debug(_('acl: %s enabled, %d entries for user %s\n') %
              (key, len(pats), user))
     if pats:
-        return match.match(repo.root, '', pats, [], [], 'glob')
+        return match.match(repo.root, '', pats)
     return match.never(repo.root, '')