Commit 04990f6d authored by Tristan Gingold's avatar Tristan Gingold

Improve error message.

parent 449e77d9
......@@ -54,8 +54,9 @@ class ActionCore(Action):
raise Exception(
"Fetching should be done before continuing.\n"
"The following modules remains unfetched:\n"
"%s",
"\n".join([str(m) for m in self if not m.isfetched]))
" {}".format(
"\n ".join([str(m) for m in self if not m.isfetched])))
def makefile(self):
"""Write the Makefile for the current design"""
self._check_all_fetched()
......
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