Skip to content
Snippets Groups Projects
Commit b9ef24f7 authored by Tim Warburton's avatar Tim Warburton
Browse files

Improve an error message.

parent 96ed2836
No related branches found
No related tags found
No related merge requests found
......@@ -921,9 +921,11 @@ class LoopKernel(Record):
subst_name = lhs.function.name
arg_names = []
for arg in lhs.parameters:
for i, arg in enumerate(lhs.parameters):
if not isinstance(arg, Variable):
raise RuntimeError("Invalid substitution rule left-hand side")
raise RuntimeError("Invalid substitution rule "
"left-hand side: %s--arg number %d "
"is not a variable"% (lhs, i))
arg_names.append(arg.name)
else:
raise RuntimeError("Invalid substitution rule left-hand side")
......
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