diff --git a/process b/process index c3008dd..c07b85b 100755 --- a/process +++ b/process @@ -19,7 +19,8 @@ def main(): reader = csv.reader(csvfile, delimiter=delim, quotechar=quotechar, skipinitialspace=True) next(reader) # Skip the first row for row in reader: + # Strip any whitespace in the csv file stripped = map(strip, row) [keyword, text, sound] = stripped - print(keyword, text, sound) + print(f'{keyword},{text},{sound}') main()