changeset 14672:785bbc8634f8

scmutil: match no longer accepts repo objects
author Matt Mackall <mpm@selenic.com>
date Sat, 18 Jun 2011 16:52:51 -0500
parents 35c2cc322ba8
children b0566467c492
files mercurial/scmutil.py
diffstat 1 files changed, 1 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/scmutil.py	Sat Jun 18 16:52:51 2011 -0500
+++ b/mercurial/scmutil.py	Sat Jun 18 16:52:51 2011 -0500
@@ -558,18 +558,12 @@
         ret.append(p)
     return ret
 
-def match(ctxorrepo, pats=[], opts={}, globbed=False, default='relpath'):
+def match(ctx, pats=[], opts={}, globbed=False, default='relpath'):
     if pats == ("",):
         pats = []
     if not globbed and default == 'relpath':
         pats = expandpats(pats or [])
 
-    if hasattr(ctxorrepo, 'match'):
-        ctx = ctxorrepo
-    else:
-        # will eventually abort here
-        ctx = ctxorrepo[None]
-
     m = ctx.match(pats, opts.get('include'), opts.get('exclude'),
                          default)
     def badfn(f, msg):