Commit 3b01a8cd authored by William Kamp's avatar William Kamp

More helpful error message when no action set causing tool not to be set.

parent 922685dc
......@@ -25,6 +25,7 @@ def load_syn_tool(tool_name):
return available_tools[tool_name]()
else:
logging.error("Unknown synthesis tool: %s", tool_name)
logging.error(" Supported synthesis tools are %s", available_tools.keys())
quit()
......@@ -50,4 +51,5 @@ def load_sim_tool(tool_name):
return available_tools[tool_name]()
else:
logging.error("Unknown simulation tool: %s", tool_name)
logging.error(" Supported simulation tools are %s", available_tools.keys())
quit()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment