Handle newlines

merge-requests/30/head
Bob Mottram 2022-11-07 18:42:08 +00:00
parent 5a9ef67775
commit 5fa549f011
1 changed files with 1 additions and 0 deletions

View File

@ -123,6 +123,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('\n', ' ')
person_notes = person_notes.replace(' ', ' ')
following_list_csv += person_notes
msg = 'Account address,Show boosts,Notes\n' + following_list_csv