From c7e67d72a37bf2469900c093c75757f9acec38af Mon Sep 17 00:00:00 2001 From: atkawa7 Date: Fri, 3 Mar 2017 14:23:08 -0700 Subject: [PATCH] print statement does not work with python 3 --- examples/form.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/form.py b/examples/form.py index 96c6dcb..5876205 100644 --- a/examples/form.py +++ b/examples/form.py @@ -21,9 +21,9 @@ template = env.get_template('base.html') -print template.render({ +print(template.render({ 'parent': example, 'determine_html_template': determine_html_template, 'get_textarea_value': get_textarea_value, 'get_attrs': get_attrs -}) +}))