fixed issue 1067

This commit is contained in:
mdipierro
2012-10-04 20:36:30 -05:00
parent 669cb6547d
commit f7c364d34b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.0.9 (2012-10-04 20:17:03) dev
Version 2.0.9 (2012-10-04 20:36:17) dev
+1 -1
View File
@@ -416,7 +416,7 @@ class TemplateParser(object):
# Allow Views to include other views dynamically
context = self.context
if current and not "response" in context:
context["response"] = current.response
context["response"] = getattr(current,'response',None)
# Get the filename; filename looks like ``"template.html"``.
# We need to eval to remove the quotes and get the string type.