Little fix in render_template

This commit is contained in:
Antonio de la Rosa 2016-03-25 05:15:53 +01:00
parent 12de6426d1
commit 033ccd5028

View file

@ -150,7 +150,7 @@ class ptemplate:
def render_template(self, template_file, **arguments): 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) return self.templates[template_file].render(**arguments)