summaryrefslogtreecommitdiff
path: root/mako/pyparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'mako/pyparser.py')
-rw-r--r--mako/pyparser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mako/pyparser.py b/mako/pyparser.py
index ab9c2b6..4192ddd 100644
--- a/mako/pyparser.py
+++ b/mako/pyparser.py
@@ -25,7 +25,7 @@ else:
# words that cannot be assigned to (notably
# smaller than the total keys in __builtins__)
reserved = set(['True', 'False', 'None'])
-
+
# the "id" attribute on a function node
arg_id = operator.attrgetter('id')
@@ -42,7 +42,7 @@ except ImportError:
def parse(code, mode='exec', **exception_kwargs):
"""Parse an expression into AST"""
-
+
try:
if _ast: