Skip to content

Commit b8c301f

Browse files
committed
Fix the regex in the sbapi python script
1 parent 82383d5 commit b8c301f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/scripts/generate-sbapi-dwarf-enum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"""
2828

2929
REGEX = re.compile(
30-
r'^ *HANDLE_DW_LNAME *\( *(?P<value>[^,]+), (?P<comment>[^"]+), "(?P<name>.*)",.*\)'
30+
r'^ *HANDLE_DW_LNAME *\( *(?P<value>[^,]+), (?P<name>.*), "(?P<comment>[^"]+)",.*\)'
3131
)
3232

3333

0 commit comments

Comments
 (0)