From 3cd58b8ad7e395c2e57d10df3ac6422417c852a9 Mon Sep 17 00:00:00 2001 From: Mal Date: Fri, 31 Jan 2025 13:37:18 +0100 Subject: [PATCH] Line break after header added --- csvtrans.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csvtrans.py b/csvtrans.py index e62051f..ce2c762 100755 --- a/csvtrans.py +++ b/csvtrans.py @@ -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)