Convert double quotes

main
Bob Mottram 2022-11-08 16:52:26 +00:00
parent 0dbdfad060
commit f47a829837
1 changed files with 1 additions and 0 deletions

View File

@ -137,6 +137,7 @@ def csv_following_list(following_filename: str,
encoding='utf-8') as fp_notes:
person_notes = fp_notes.read()
person_notes = person_notes.replace(',', ' ')
person_notes = person_notes.replace('"', "'")
person_notes = person_notes.replace('\n', '<br>')
person_notes = person_notes.replace(' ', ' ')
following_list_csv += person_notes