Mi marco está levantando un error de sintaxis cuando trato de ejecutar este código:Sea mi compilador humano: ¿Qué hay de malo en este código de Python 2.5?
from django.template import Template, TemplateSyntaxError
try:
Template(value)
except TemplateSyntaxError as error:
raise forms.ValidationError(error)
return value
Y aquí está el error:
from template_field import TemplateTextField, TemplateCharField
File "C:\django\internal\..\internal\cmsplugins\form_designer\template_field.py", line 14
except TemplateSyntaxError as error:
^
SyntaxError: invalid syntax
¿Qué está pasando?
¡Impresionante! Gracias. –