[Checkins] SVN: Zope/trunk/src/DocumentTemplate/DT_Raise.py PEP 8.

Tres Seaver tseaver at palladion.com
Mon Apr 6 10:32:17 EDT 2009


Log message for revision 98921:
  PEP 8.

Changed:
  U   Zope/trunk/src/DocumentTemplate/DT_Raise.py

-=-
Modified: Zope/trunk/src/DocumentTemplate/DT_Raise.py
===================================================================
--- Zope/trunk/src/DocumentTemplate/DT_Raise.py	2009-04-06 10:50:32 UTC (rev 98920)
+++ Zope/trunk/src/DocumentTemplate/DT_Raise.py	2009-04-06 14:32:17 UTC (rev 98921)
@@ -42,20 +42,24 @@
     def __init__(self, blocks):
 
         tname, args, section = blocks[0]
-        self.section=section.blocks
-        args=parse_params(args, type='', expr='')
+        self.section = section.blocks
+        args = parse_params(args, type='', expr='')
         self.__name__, self.expr = name_param(args, 'raise', 1, attr='type')
 
     def render(self,md):
-        expr=self.expr
+        expr = self.expr
         if expr is None:
-            t=self.__name__
+            t = self.__name__
         else:
-            try: t=expr.eval(md)
-            except: t=InvalidErrorTypeExpression
+            try:
+                t = expr.eval(md)
+            except:
+                t = InvalidErrorTypeExpression
 
-        try: v=render_blocks(self.section,md)
-        except: v='Invalid Error Value'
+        try:
+            v = render_blocks(self.section, md)
+        except:
+            v = 'Invalid Error Value'
         
         # String Exceptions are deprecated on Python 2.5 and
         # plain won't work at all on Python 2.6. So try to upgrade it
@@ -63,4 +67,4 @@
         t, v = upgradeException(t, v)
         raise t, v
 
-    __call__=render
+    __call__ = render



More information about the Checkins mailing list