From 2ee5c7edac140c8ba01b50593f16d56e2cee5f37 Mon Sep 17 00:00:00 2001 Message-Id: <2ee5c7edac140c8ba01b50593f16d56e2cee5f37.1746815581.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 20 Mar 2008 23:12:11 +0000 Subject: [PATCH] Don't set the default authdate if none specified Organization: Straylight/Edgeware From: Catalin Marinas This way, we allow a patch editing to remove an existing date by not specifying it. Signed-off-by: Catalin Marinas --- stgit/stack.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/stgit/stack.py b/stgit/stack.py index 1f01295..74c2c10 100644 --- a/stgit/stack.py +++ b/stgit/stack.py @@ -700,8 +700,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: -- [mdw]