Update error message to use the correct lexer token name

refs #7883
This commit is contained in:
Gunnar Beutner 2014-12-11 15:07:21 +01:00
parent ebc0845853
commit 7ac6347d6a
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public:
}
}
else
BOOST_THROW_EXCEPTION(ScriptError("Invalid type in __for expression: " + value.GetTypeName(), debugInfo));
BOOST_THROW_EXCEPTION(ScriptError("Invalid type in for expression: " + value.GetTypeName(), debugInfo));
return Empty;
}