[#73220] add dot character to the valid instance name characters
This commit is contained in:
parent
dd78eda343
commit
005a5d0215
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue