From 1bd82521d49778a78616ea64492746f6a18bf233 Mon Sep 17 00:00:00 2001 From: Alex Kessinger Date: Fri, 28 Oct 2011 23:58:22 -0700 Subject: [PATCH] Jinja2 expects a reference to a class, not a module. --- docs/jinja2.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/jinja2.txt b/docs/jinja2.txt index de9a17b..d23a65e 100644 --- a/docs/jinja2.txt +++ b/docs/jinja2.txt @@ -32,7 +32,7 @@ only requires to add extension to ``JINJA2_EXTENSIONS`` at main settings module:: JINJA2_EXTENSIONS = [ - 'compressor.contrib.jinja2ext', + 'compressor.contrib.jinja2ext.CompressorExtension', ] And that's it - our extension is loaded and ready to be used.