From f6a92810f0c228dd899793cb11040c89315f5d02 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Thu, 19 Jul 2018 02:18:36 -0500 Subject: [PATCH] Fix missing argument to format string --- loopy/check.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/loopy/check.py b/loopy/check.py index c8a36a5e7..ce40fbaa7 100644 --- a/loopy/check.py +++ b/loopy/check.py @@ -53,7 +53,8 @@ def check_identifiers_in_subst_rules(knl): raise LoopyError("kernel '%s': substitution rule '%s' refers to " "identifier(s) '%s' which are neither rule arguments nor " "kernel-global identifiers" - % (knl.name, ", ".join(deps-rule_allowed_identifiers))) + % (knl.name, rule.name, + ", ".join(deps-rule_allowed_identifiers))) # }}} -- GitLab