mercurial/commands.py
changeset 8706 25e9c71b89de
parent 8704 27a103df29b7
child 8760 bf17aeafb869
--- a/mercurial/commands.py	Mon Jun 01 14:11:19 2009 -0500
+++ b/mercurial/commands.py	Mon Jun 01 14:11:32 2009 -0500
@@ -645,8 +645,8 @@
         e = cmdutil.commitforceeditor
 
     def commitfunc(ui, repo, message, match, opts):
-        return repo.commit(None, message, opts.get('user'),
-            opts.get('date'), match, editor=e, extra=extra)
+        return repo.commit(message, opts.get('user'), opts.get('date'), match,
+                           editor=e, extra=extra)
 
     node = cmdutil.commit(ui, repo, commitfunc, pats, opts)
     if not node:
@@ -1754,7 +1754,7 @@
                     files = patch.updatedir(ui, repo, files, similarity=sim/100.)
                 if not opts.get('no_commit'):
                     m = cmdutil.matchfiles(repo, files or [])
-                    n = repo.commit(None, message, opts.get('user') or user,
+                    n = repo.commit(message, opts.get('user') or user,
                                     opts.get('date') or date, match=m,
                                     editor=cmdutil.commiteditor)
                     if opts.get('exact'):