summaryrefslogtreecommitdiff
path: root/templates/python/template.py
diff options
context:
space:
mode:
Diffstat (limited to 'templates/python/template.py')
-rw-r--r--templates/python/template.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/python/template.py b/templates/python/template.py
index 4ceeb51..af5b36e 100644
--- a/templates/python/template.py
+++ b/templates/python/template.py
@@ -1,7 +1,12 @@
#############################################################################
# Functions that implement steps.
-{{ functions }}
+{% for func in functions %}
+#----------------------------------------------------------------------------
+# This code comes from: {{ func.source }}
+
+{{ func.code }}
+{% endfor %}
#############################################################################