diff --git a/webapp_utils.py b/webapp_utils.py
index 575785987..ff6ffa833 100644
--- a/webapp_utils.py
+++ b/webapp_utils.py
@@ -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