On Fri, May 24, 2013 at 6:17 PM, Kristin Barber <[email protected]> wrote: > File "..../Jinja2-2.7-py2.4.egg/jinja2/environment.py", line 648 > info.external_attr = 0o755 << 16 > ^ > SyntaxError: invalid syntax
>From that file path it looks like you're trying to use jinja with python 2.4, which is not a supported version: "Jinja2 works with Python 2.6.x, 2.7.x and >= 3.3." http://jinja.pocoo.org/docs/intro/#prerequisites Are you able to upgrade to python 2.6.x or higher? -Steve -- You received this message because you are subscribed to the Google Groups "pocoo-libs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pocoo-libs?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
