patch-git: Avoid trailing tabs in changelog

The RPM Lua function print puts tabs between its arguments.

Resolves: RHEL-140226
This commit is contained in:
Florian Weimer 2026-01-16 14:57:11 +01:00
parent 6f4573339c
commit b0bfe08c85

View File

@ -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