Mercurial > public > mercurial-scm > hg-stable
diff mercurial/patch.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 | a57a27b12965 |
children | 336fda65759a |
line wrap: on
line diff
--- a/mercurial/patch.py Mon May 12 11:37:08 2008 -0500 +++ b/mercurial/patch.py Mon May 12 11:37:08 2008 -0500 @@ -1186,7 +1186,7 @@ date1 = util.datestr(ctx1.date()) if not changes: - changes = repo.status(node1, node2, files=match.files(), match=match)[:5] + changes = repo.status(node1, node2, match=match)[:5] modified, added, removed, deleted, unknown = changes if not modified and not added and not removed: