3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

sby: core: explicitly split the the entries for the [options] section params to be at most one,

This commit is contained in:
Aki Van Ness 2022-08-04 05:52:59 -04:00 committed by Aki
parent 10234fef00
commit 9368f3f987

View file

@ -335,7 +335,7 @@ class SbyConfig:
self.error(f"sby file syntax error: unexpected section '{section}', expected one of 'options, engines, script, autotune, file, files'")
if mode == "options":
entries = line.split()
entries = line.split(maxsplit = 1)
if len(entries) != 2:
self.error(f"sby file syntax error: '[options]' section entry does not have an argument '{line}'")
self.options[entries[0]] = entries[1]