Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fix exception call
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jan 21, 2016
1 parent 3308312 commit 0829349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyquickhelper/pycode/utils_tests.py
Expand Up @@ -775,7 +775,7 @@ def tested_module(folder, project_var_name, setup_params):
if len(keep) > 0:
raise SetupHookException(
"unable to run _setup_hook\n**OUT:\n{0}\n**ERR:\n{1}\n**FOLDER:\n{2}\n**NAME:\n{3}\n**KEEP:\n{4}\n**"
.format(out, err, folder, project_var_name), "\n".join(keep))
.format(out, err, folder, project_var_name, "\n".join(keep)))
else:
out += "\nWARNINGS:\n" + err
err = None
Expand Down

0 comments on commit 0829349

Please sign in to comment.