From f8cdd693d03f701019591fb930ec833d4d0b517e Mon Sep 17 00:00:00 2001 From: Ponrar Date: Sun, 9 Jul 2023 03:35:13 -0700 Subject: [PATCH] Fix delim for notecard output --- process | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process b/process index b42a4eb..6d58247 100755 --- a/process +++ b/process @@ -22,5 +22,5 @@ def main(): # Strip any whitespace in the csv file stripped = map(strip, row) [keyword, text, sound] = stripped - print(f'{keyword},{text},{sound}') + print(f'{keyword}|{text}|{sound}') main()