From a0c727a4c0ba36e0e5379d681cbbb0754b830587 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karl=20Hasselstr=C3=B6m?= Date: Thu, 24 Jan 2008 07:17:58 +0100 Subject: [PATCH] Don't keep old committer when rewriting a commit MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Karl Hasselström --- stgit/lib/transaction.py | 1 + 1 file changed, 1 insertion(+) diff --git a/stgit/lib/transaction.py b/stgit/lib/transaction.py index a60c5ff..809eabf 100644 --- a/stgit/lib/transaction.py +++ b/stgit/lib/transaction.py @@ -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) -- 2.11.4.GIT