From ba5ed490d3844705cc950dc2eae8c6a92938e757 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Wed, 25 Oct 2023 14:20:39 +0200 Subject: [PATCH] gerrit-send-mail.py: Add patch version to subject Change-Id: I75403dfbebeeb4d667c7dd6b8276c6a4f2ae4842 Signed-off-by: Frank Lichtenheld Acked-by: Gert Doering Message-Id: <20231025122039.1031284-1-frank@lichtenheld.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg27296.html Signed-off-by: Gert Doering --- dev-tools/gerrit-send-mail.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-tools/gerrit-send-mail.py b/dev-tools/gerrit-send-mail.py index 851a20a0a88..5429aef6d9f 100755 --- a/dev-tools/gerrit-send-mail.py +++ b/dev-tools/gerrit-send-mail.py @@ -108,8 +108,9 @@ def apply_patch_mods(patch_text, details, args): + patch_text[comment_start:] ) filename = f"gerrit-{args.changeid}-{details['revision']}.patch" + patch_text_final = patch_text_mod.replace("Subject: [PATCH]", f"Subject: [PATCH v{details['revision']}]") with open(filename, "w") as patch_file: - patch_file.write(patch_text_mod) + patch_file.write(patch_text_final) print("send with:") print(f"git send-email --in-reply-to {details['msg_id']} {filename}")