If you use string.Format method to format strings and you encounter the above error message, it is highly likely that you are using either { or } without an index number.
Example the following will fail:
string.format(”text { {0} or }”, test);
To fix the above just escape the character “{” with “{{” and “}” with “}}”
string.format(”text {{ {0} or }}”, test);

