This commit is contained in:
Andrei Stoica 2023-02-15 14:56:34 -05:00
parent 120b3d2f9f
commit 3389669e4e
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ def parse_note(note_f: str, line_matcher: re.Pattern) -> dict:
else: else:
if m.group(2) and curr_section: if m.group(2) and curr_section:
todo[curr_section].append(m.group(4)) 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)}" todo[curr_section][-1] += f"\n {m.group(4)}"
return todo return todo