Fix missing newline at end of csv-normaliser output

This commit is contained in:
2024-09-03 19:56:51 +10:00
parent b4fec83039
commit bf5aee2f00

View File

@@ -166,6 +166,6 @@ if (($handle = fopen($outputFile, "w")) !== FALSE) {
exit(1); exit(1);
} }
print("Data written to " . $outputFile); print("Data written to " . $outputFile . "\n");
exit(0); exit(0);