From c50c8ab6b4a1c63479430c1865539fc19c643bd0 Mon Sep 17 00:00:00 2001 From: Jack Morgan Date: Mon, 24 May 2021 14:04:57 +1200 Subject: [PATCH] Add missing MANIFEST file Package was missing required HTML files. Raises #522 --- MANIFEST.in | 3 +++ verto/VertoExtension.py | 1 + 2 files changed, 4 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..2f4ad2a1 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include *.txt +include *.md +recursive-include verto *.html *.py *.png *.conf *.md *.json diff --git a/verto/VertoExtension.py b/verto/VertoExtension.py index 0f38b61c..c7eb80f4 100644 --- a/verto/VertoExtension.py +++ b/verto/VertoExtension.py @@ -145,6 +145,7 @@ def loadJinjaTemplates(self, custom_templates): Args: custom_templates: a dictionary of names to custom templates which are used to override default templates. + Returns: A dictionary of tuples containing template-names to compiled jinja templated.