[Zope-Checkins] CVS: Zope/lib/python/TAL - TALInterpreter.py:1.68.22.2

Fred L. Drake, Jr. fdrake@acm.org
Tue, 2 Jul 2002 14:35:19 -0400


Update of /cvs-repository/Zope/lib/python/TAL
In directory cvs.zope.org:/tmp/cvs-serv9310

Modified Files:
      Tag: zope2-tal-i18n-branch
	TALInterpreter.py 
Log Message:
Remove variable used only once.


=== Zope/lib/python/TAL/TALInterpreter.py 1.68.22.1 => 1.68.22.2 ===
         _stream_write = self._stream_write
         _stream_write("<" + name)
-        namelen = _len(name)
-        col = self.col + namelen + 1
+        col = self.col + _len(name) + 1
         wrap = self.wrap
         align = col + 1
         if align >= wrap/2: