mercurial/localrepo.py
changeset 6721 521c6c6f3b9b
parent 6715 a3c41abfa828
child 6722 197d54d82f8d
--- a/mercurial/localrepo.py	Mon Jun 23 12:54:27 2008 +0200
+++ b/mercurial/localrepo.py	Mon Jun 23 13:12:32 2008 +0200
@@ -791,9 +791,9 @@
                 update_dirstate = (self.dirstate.parents()[0] == p1)
                 changes = [files, [], [], [], []]
 
-            wctx = context.workingctx(self, (p1, p2), text, user, date, 
+            wctx = context.workingctx(self, (p1, p2), text, user, date,
                                       extra, changes)
-            return self._commitctx(wctx, force, force_editor, empty_ok, 
+            return self._commitctx(wctx, force, force_editor, empty_ok,
                                    use_dirstate, update_dirstate)
         finally:
             del lock, wlock
@@ -803,8 +803,8 @@
         try:
             wlock = self.wlock()
             lock = self.lock()
-            return self._commitctx(ctx, force=True, force_editor=False, 
-                                   empty_ok=True, use_dirstate=False, 
+            return self._commitctx(ctx, force=True, force_editor=False,
+                                   empty_ok=True, use_dirstate=False,
                                    update_dirstate=False)
         finally:
             del lock, wlock