Line break after header added

This commit is contained in:
Mal 2025-01-31 13:37:18 +01:00
parent f13038b0c8
commit 3cd58b8ad7

View File

@ -59,7 +59,7 @@ for l in lines[1:]:
new_lines.append(';'.join(new_line))
output = ';'.join(new_head) + '\n'.join(new_lines)
output = ';'.join(new_head) + '\n' + '\n'.join(new_lines)
if args.output is None:
print(output)