From 033ccd5028d724fdb885e57ed42ae646d2e9aeb1 Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Fri, 25 Mar 2016 05:15:53 +0100 Subject: [PATCH] Little fix in render_template --- paramecio/citoplasma/mtemplates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paramecio/citoplasma/mtemplates.py b/paramecio/citoplasma/mtemplates.py index a95deb2..6f0d552 100644 --- a/paramecio/citoplasma/mtemplates.py +++ b/paramecio/citoplasma/mtemplates.py @@ -150,7 +150,7 @@ class ptemplate: def render_template(self, template_file, **arguments): - arguments['make_media_url']=make_media_url + arguments.update(self.filters) return self.templates[template_file].render(**arguments)