Skip to content
Snippets Groups Projects
Commit 0b295797 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix missing space in error message

parent 2992bf48
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ def check_for_unused_hw_axes_in_insns(kernel):
",".join(str(i) for i in group_axes),
",".join(str(i) for i in group_axes_used)))
if local_axes != local_axes_used:
raise LoopyError("instruction '%s' does not use all local hw axes"
raise LoopyError("instruction '%s' does not use all local hw axes "
"(available: %s used:%s)"
% (insn.id,
",".join(str(i) for i in local_axes),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment