From 6486cd4917eeb641911b3430e77f5ed43956b0da Mon Sep 17 00:00:00 2001 From: Antony Oduor Date: Wed, 11 Nov 2020 12:25:28 -0700 Subject: [PATCH] Fix Typo in demo.py Template path pointed to websauna.magiclogin instead of websauna.newsletter. --- websauna/newsletter/demo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websauna/newsletter/demo.py b/websauna/newsletter/demo.py index f9dd563..f1cddfe 100644 --- a/websauna/newsletter/demo.py +++ b/websauna/newsletter/demo.py @@ -40,7 +40,7 @@ def configure_templates(self): super(Initializer, self).configure_templates() # Your app templates go here - self.config.add_jinja2_search_path('websauna.magiclogin:demotemplates', name='.html', prepend=True) + self.config.add_jinja2_search_path('websauna.newsletter:demotemplates', name='.html', prepend=True) def run(self): super(Initializer, self).run()