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:
parent
10234fef00
commit
9368f3f987
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue