From 0b29579705fa4bb9e16929d5b876179cbdfdde6b Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Thu, 26 May 2016 02:10:09 +0200 Subject: [PATCH] Fix missing space in error message --- loopy/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopy/check.py b/loopy/check.py index 910ab24ab..853743733 100644 --- a/loopy/check.py +++ b/loopy/check.py @@ -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), -- GitLab