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

Fix variable name in find_property_by_cellname's error path

This commit is contained in:
Jannis Harder 2022-03-31 13:12:15 +02:00
parent 2e0087fd2f
commit a78eaa57db

View file

@ -97,7 +97,7 @@ class SbyModule:
for prop in self:
if cell_name == prop.name.translate(str.maketrans(trans_dict)):
return prop
raise KeyError(f"No such property: {smt2_name}")
raise KeyError(f"No such property: {cell_name}")
def design_hierarchy(filename):
design_json = json.load(filename)