Skip to content

Commit

Permalink
Merge pull request #4 from Roger/fix_import_errors_in_new_jinja
Browse files Browse the repository at this point in the history
fix import errors in last version of jinja
  • Loading branch information
syrusakbary committed Aug 30, 2013
2 parents f46edf2 + 1310e56 commit 42c6675
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jsjinja/compiler.py
Expand Up @@ -15,7 +15,9 @@
from jinja2.nodes import EvalContext
from jinja2.visitor import NodeVisitor
from jinja2.exceptions import TemplateAssertionError
from jinja2.utils import Markup, concat, escape, is_python_keyword, next
from jinja2.utils import Markup, concat, escape
from jinja2._compat import next
from keyword import iskeyword as is_python_keyword

operators = {
'eq': '==',
Expand Down

0 comments on commit 42c6675

Please sign in to comment.