mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
sby: core: changed how the split for the section header and arguments are done, with a prior strip to remove and extra whitespace
This commit is contained in:
parent
8133aaa8f8
commit
10234fef00
|
@ -268,7 +268,7 @@ class SbyConfig:
|
|||
continue
|
||||
match = re.match(r"^\s*\[(.*)\]\s*$", line)
|
||||
if match:
|
||||
entries = match.group(1).split(" ", maxsplit = 1)
|
||||
entries = match.group(1).strip().split(maxsplit = 1)
|
||||
if len(entries) == 0:
|
||||
self.error(f"sby file syntax error: Expected section header, got '{line}'")
|
||||
elif len(entries) == 1:
|
||||
|
|
Loading…
Reference in a new issue