From b0bfe08c85f5a18f918d352a494685106a223dad Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 16 Jan 2026 14:57:11 +0100 Subject: [PATCH] patch-git: Avoid trailing tabs in changelog The RPM Lua function print puts tabs between its arguments. Resolves: RHEL-140226 --- patch-git.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch-git.lua b/patch-git.lua index 63962d8..38e0ee9 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