mirror of https://gitlab.com/bashrc2/epicyon
Handle newlines
parent
5a9ef67775
commit
5fa549f011
|
@ -123,6 +123,7 @@ def csv_following_list(following_filename: str,
|
||||||
encoding='utf-8') as fp_notes:
|
encoding='utf-8') as fp_notes:
|
||||||
person_notes = fp_notes.read()
|
person_notes = fp_notes.read()
|
||||||
person_notes = person_notes.replace(',', ' ')
|
person_notes = person_notes.replace(',', ' ')
|
||||||
|
person_notes = person_notes.replace('\n', ' ')
|
||||||
person_notes = person_notes.replace(' ', ' ')
|
person_notes = person_notes.replace(' ', ' ')
|
||||||
following_list_csv += person_notes
|
following_list_csv += person_notes
|
||||||
msg = 'Account address,Show boosts,Notes\n' + following_list_csv
|
msg = 'Account address,Show boosts,Notes\n' + following_list_csv
|
||||||
|
|
Loading…
Reference in New Issue