We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following example results in an error when parsing the template using pot-create:
<div tal:define="structural field.widget.hidden or field.widget.category == 'structural'"> </div>
The error message is:
Aborting due to Python syntax error in %s[%d]: %s ./test.pt 1 field.widget.hidden or field.widget.category == 'structural'
The example does work when parsed by chameleon.
Possible workarounds are adding a \ after or or removing the line break.
\
or
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The following example results in an error when parsing the template using pot-create:
The error message is:
The example does work when parsed by chameleon.
Possible workarounds are adding a
\
afteror
or removing the line break.The text was updated successfully, but these errors were encountered: