From 8b7a57810652225f563da999cb74f32e1797eb0c Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Mon, 26 Jan 2026 20:08:27 -0500 Subject: [PATCH] patch-git: Avoid trailing tabs in changelog (RHEL-140227) The RPM Lua function print puts tabs between its arguments. Resolves: RHEL-140227 --- patch-git.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch-git.lua b/patch-git.lua index c975eb7..2ae7888 100644 --- a/patch-git.lua +++ b/patch-git.lua @@ -1923,7 +1923,7 @@ if rpm then for j=1,#cl do -- RPM does not recursively macro-expand what we emit here, -- so do not apply %-escaping. - print(cl[j], '\n') + print(cl[j] .. '\n') end print('\n') end