From: Simon Tatham Date: Thu, 14 Dec 2023 18:20:24 +0000 (+0000) Subject: Fix goof in IndentedParagraph. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=3127fef866fa85753b9b1c39e909117fb78ee2f0;p=mastodonochrome.git Fix goof in IndentedParagraph. --- diff --git a/text.py b/text.py index 233c0f0..8257f68 100644 --- a/text.py +++ b/text.py @@ -396,7 +396,7 @@ class IndentedParagraph(Paragraph): except StopIteration: return for line in it: - yield " " * self.laterindent + next(it) + yield " " * self.laterindent + line class NotificationLog: can_highlight_as_target = True