Skip to content

Commit

Permalink
parmys file error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
amirarjmand93 committed Dec 9, 2024
1 parent f2eca1a commit 7e4632f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vtr_flow/scripts/python_libs/vtr/parmys/parmys.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def run(
# Set the synlig exe script path in the environment variable(handle if it is not set or system-verilog OFF)
try:
os.environ["synlig_exe_path"] = str(vtr.paths.synlig_exe_path)
except Exception as e:
except KeyError as key_error:
os.environ["synlig_exe_path"] = "/dummy/path"

# set the parser
Expand Down

0 comments on commit 7e4632f

Please sign in to comment.