From e1c898ff40f30c1bbe225598e35af493fae40dca Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 8 Sep 2015 12:42:32 -0400 Subject: [PATCH] Remove unneeded .write() method --- common/djangoapps/pipeline_mako/templates/static_content.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/pipeline_mako/templates/static_content.html b/common/djangoapps/pipeline_mako/templates/static_content.html index d7ecec5cf1..f62abf6635 100644 --- a/common/djangoapps/pipeline_mako/templates/static_content.html +++ b/common/djangoapps/pipeline_mako/templates/static_content.html @@ -86,5 +86,5 @@ try: except TemplateLookupException: pass else: - content.write(tmpl.render_context(context)) + tmpl.render_context(context) %>