Adjust regex to handle cases such as C:/Program Files/folder

This commit is contained in:
georgev93 2020-04-21 21:21:41 -04:00 committed by Daniel Mensinger
parent 39ca178d21
commit 8e397491b4
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ class CMakeTraceParser:
# Try joining file paths that contain spaces
reg_start = re.compile(r'^([A-Za-z]:)?/.*/[^./]+$')
reg_start = re.compile(r'^([A-Za-z]:)?/(.*/)*[^./]+$')
reg_end = re.compile(r'^.*\.[a-zA-Z]+$')
fixed_list = [] # type: T.List[str]