Mercurial > public > mercurial-scm > hg-stable
diff hgext/extdiff.py @ 6603:41eb20cc1c02
match: remove files arg from repo.status and friends
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 12 May 2008 11:37:08 -0500 |
parents | 5acbdd3941c4 |
children | f6c00b17387c |
line wrap: on
line diff
--- a/hgext/extdiff.py Mon May 12 11:37:08 2008 -0500 +++ b/hgext/extdiff.py Mon May 12 11:37:08 2008 -0500 @@ -123,7 +123,7 @@ node1, node2 = cmdutil.revpair(repo, opts['rev']) matcher = cmdutil.match(repo, pats, opts) modified, added, removed, deleted, unknown = repo.status( - node1, node2, matcher.files(), match=matcher)[:5] + node1, node2, matcher)[:5] if not (modified or added or removed): return 0