Mercurial > public > mercurial-scm > hg
diff hgext/gpg.py @ 8706:25e9c71b89de
commit: drop the now-unused files parameter
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 01 Jun 2009 14:11:32 -0500 |
parents | 02a12835b17e |
children | c5f36402daad |
line wrap: on
line diff
--- a/hgext/gpg.py Mon Jun 01 14:11:19 2009 -0500 +++ b/hgext/gpg.py Mon Jun 01 14:11:32 2009 -0500 @@ -256,7 +256,7 @@ for n in nodes]) try: m = match.exact(['.hgsigs']) - repo.commit(None, message, opts['user'], opts['date'], match=m) + repo.commit(message, opts['user'], opts['date'], match=m) except ValueError, inst: raise util.Abort(str(inst))