Don't keep old committer when rewriting a commit
authorKarl Hasselström <kha@treskal.com>
Thu, 24 Jan 2008 06:17:58 +0000 (07:17 +0100)
committerKarl Hasselström <kha@treskal.com>
Thu, 24 Jan 2008 07:22:17 +0000 (08:22 +0100)
Signed-off-by: Karl Hasselström <kha@treskal.com>
stgit/lib/transaction.py

index a60c5ff..809eabf 100644 (file)
@@ -176,6 +176,7 @@ class StackTransaction(object):
         conflicts to them."""
         i = self.unapplied.index(pn)
         cd = self.patches[pn].data
+        cd = cd.set_committer(None)
         s = ['', ' (empty)'][cd.is_nochange()]
         oldparent = cd.parent
         cd = cd.set_parent(self.__head)