[ZPT] CVS: Packages/TAL - TALInterpreter.py:1.48

evan@serenade.digicool.com evan@serenade.digicool.com
Fri, 8 Jun 2001 16:23:58 -0400


Update of /cvs-repository/Packages/TAL
In directory serenade:/home/evan/Zope/pt/lib/python/TAL

Modified Files:
	TALInterpreter.py 
Log Message:
Fixed minor bug in attribute formatting.



--- Updated File TALInterpreter.py in package Packages/TAL --
--- TALInterpreter.py	2001/06/08 14:18:17	1.47
+++ TALInterpreter.py	2001/06/08 20:23:58	1.48
@@ -307,7 +307,7 @@
                 self.col >= align and
                 self.col + 1 + _len(s) > self.wrap):
                 self._stream_write("\n" + " "*align)
-                self.col = self.col + align
+                self.col = align
             else:
                 s = " " + s
             self._stream_write(s)