From 0671cf1da7a8dd3d25d019f1b9f9b9465f7493ff Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 6 Dec 2023 19:03:26 +0000 Subject: [PATCH] Fix missing 'you' after 'followed'. --- text.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/text.py b/text.py index 21172ac..307a422 100644 --- a/text.py +++ b/text.py @@ -296,6 +296,8 @@ class NotificationLog: self.para = Paragraph() self.para.add(ColouredString(date + " " + sentence)) + self.para.end_word() + if want_content: for cpara in cparas: self.para.add_para(cpara) -- 2.30.2