[#73220] add . and $ to possible names characters

This commit is contained in:
Mateusz Gancarz 2025-02-25 15:18:20 +01:00
parent b875ed0ea4
commit 224367dd6c
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ class SAIFParser:
if match:
self.duration = int(match.groups()[0])
match = re.search(r'INSTANCE\s+([\w.]*)', line)
match = re.search(r'INSTANCE\s+([\w\.\$]+)', line)
if match:
instance_name = match.groups()[0]