3
0
Fork 0
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:
Aki Van Ness 2022-08-02 08:55:35 -04:00 committed by Aki
parent 8133aaa8f8
commit 10234fef00

View file

@ -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: