From: Catalin Marinas Date: Thu, 20 Mar 2008 23:12:32 +0000 (+0000) Subject: Don't set the default authdate if none specified X-Git-Tag: v0.14.2~19 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/42f0b652f8f43150e7925f68962e593904beb1a3?ds=inline Don't set the default authdate if none specified This way, we allow a patch editing to remove an existing date by not specifying it. Signed-off-by: Catalin Marinas --- diff --git a/stgit/stack.py b/stgit/stack.py index f1f75e4..c2eb2de 100644 --- a/stgit/stack.py +++ b/stgit/stack.py @@ -793,8 +793,6 @@ class Series(PatchSet): author_name = patch.get_authname() if not author_email: author_email = patch.get_authemail() - if not author_date: - author_date = patch.get_authdate() if not committer_name: committer_name = patch.get_commname() if not committer_email: