patch-git: Avoid trailing tabs in changelog (RHEL-140227)

The RPM Lua function print puts tabs between its arguments.

Resolves: RHEL-140227
This commit is contained in:
DJ Delorie 2026-01-26 20:08:27 -05:00
parent ddbe2358d1
commit 8b7a578106

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