Commit 1670ec89 authored by Tristan Gingold's avatar Tristan Gingold

Fix error message.

parent eb10004a
......@@ -24,8 +24,8 @@ def load_syn_tool(tool_name):
logging.debug("Synthesis tool to be used found: %s", tool_name)
return available_tools[tool_name]()
else:
raise Exception("Unknown synthesis tool: %s" + tool_name
+ " Supported synthesis tools are %s" + available_tools.keys())
raise Exception("Unknown synthesis tool: " + tool_name
+ " Supported synthesis tools are " + available_tools.keys())
def load_sim_tool(tool_name):
......
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