From ce52aaff0a914cbb8acaf24b6b41544714de3daf Mon Sep 17 00:00:00 2001 From: Jann Horn Date: Sun, 1 Sep 2024 23:40:43 +0200 Subject: [PATCH] fix bogus matching of child text lines against parent blank lines --- threadview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threadview.py b/threadview.py index 40b5841..6b93b62 100755 --- a/threadview.py +++ b/threadview.py @@ -175,7 +175,7 @@ class Line: def as_hashable_inherited_line(self): if not self.maybe_quote: - return '' # will be treated as junk + return None # will be treated as junk; must not match anything on the other side stripped = self.text.strip() if stripped.startswith('>'): stripped = stripped[1:].strip() -- 2.20.1