From 3389669e4e355156d6e479ae4fc7c5d1f3380fb0 Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Wed, 15 Feb 2023 14:56:34 -0500 Subject: [PATCH] catchup --- todo/todo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo/todo.py b/todo/todo.py index 4768cb2..9a7949f 100644 --- a/todo/todo.py +++ b/todo/todo.py @@ -64,7 +64,7 @@ def parse_note(note_f: str, line_matcher: re.Pattern) -> dict: else: if m.group(2) and curr_section: todo[curr_section].append(m.group(4)) - elif curr_section: + elif not m.group(3) and curr_section: todo[curr_section][-1] += f"\n {m.group(4)}" return todo