Skip to content

Commit fffade6

Browse files
committed
actually fixed the parser bug this time
1 parent 44a3692 commit fffade6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/carmina/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def parse_xml(file_path):
3737
with open(file_path) as f:
3838
lines = f.readlines()
3939
normalized_lines = [_normalize_line(line) for line in lines
40-
if line.startswith("<l")]
40+
if line.startswith("<l>") or line.startswith("<l ")]
4141
return normalized_lines
4242

4343

0 commit comments

Comments
 (0)