summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-10-12 03:44:43 -0400
committerChris McDonough <chrism@plope.com>2012-10-12 03:44:43 -0400
commit7cd6b99cba30093604b3344c3cb6d235977f3ae3 (patch)
tree8896ea75470f5db56dbc443c741a4740074f3d2b
parent1273d56ee5c038f447dce0525844cd3ea6c15e4d (diff)
downloadpyramid-7cd6b99cba30093604b3344c3cb6d235977f3ae3.tar.gz
pyramid-7cd6b99cba30093604b3344c3cb6d235977f3ae3.tar.bz2
pyramid-7cd6b99cba30093604b3344c3cb6d235977f3ae3.zip
Fix indentation
-rw-r--r--pyramid/chameleon_zpt.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/pyramid/chameleon_zpt.py b/pyramid/chameleon_zpt.py
index 73203a7cb..d8a8ee1be 100644
--- a/pyramid/chameleon_zpt.py
+++ b/pyramid/chameleon_zpt.py
@@ -18,10 +18,12 @@ class ZPTTemplateRenderer(object):
@reify # avoid looking up reload_templates before manager pushed
def template(self):
- tf = PageTemplateFile(self.path,
- auto_reload=self.lookup.auto_reload,
- debug=self.lookup.debug,
- translate=self.lookup.translate)
+ tf = PageTemplateFile(
+ self.path,
+ auto_reload=self.lookup.auto_reload,
+ debug=self.lookup.debug,
+ translate=self.lookup.translate
+ )
if self.macro:
# render only the portion of the template included in a
# define-macro named the value of self.macro