[#73220] add dot character to the valid instance name characters

This commit is contained in:
Mateusz Gancarz 2025-02-21 11:09:39 +01:00
parent dd78eda343
commit 005a5d0215
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class SAIFParser:
if not line:
continue
match = re.search(r'INSTANCE\s+(\w*)', line)
match = re.search(r'INSTANCE\s+([\w.]*)', line)
if match:
instance_name = match.groups()[0]