Fix delim for notecard output

This commit is contained in:
Ponrar 2023-07-09 03:35:13 -07:00
parent 0eeaa9b618
commit f8cdd693d0

View File

@ -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()