Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 6600:b822a379860b
match: stop passing files through commitfunc
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 12 May 2008 11:37:08 -0500 |
parents | 371415a2b959 |
children | 41eb20cc1c02 |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Mon May 12 11:37:08 2008 -0500 +++ b/mercurial/cmdutil.py Mon May 12 11:37:08 2008 -0500 @@ -1183,6 +1183,6 @@ raise util.Abort(_("file %s not tracked!") % rel) m = matchfiles(repo, files) try: - return commitfunc(ui, repo, m.files(), message, m, opts) + return commitfunc(ui, repo, message, m, opts) except ValueError, inst: raise util.Abort(str(inst))