[Zope-Checkins] CVS: Zope/lib/python/Products/PageTemplates - TALES.py:1.31.6.4

Matthew T. Kromer matt@zope.com
Fri, 20 Sep 2002 15:52:26 -0400


Update of /cvs-repository/Zope/lib/python/Products/PageTemplates
In directory cvs.zope.org:/tmp/cvs-serv9625/lib/python/Products/PageTemplates

Modified Files:
      Tag: Zope-2_6-branch
	TALES.py 
Log Message:
Reapply str->ustr conversions, since they were held harmless by testing


=== Zope/lib/python/Products/PageTemplates/TALES.py 1.31.6.3 => 1.31.6.4 ===
--- Zope/lib/python/Products/PageTemplates/TALES.py:1.31.6.3	Fri Sep 20 15:13:56 2002
+++ Zope/lib/python/Products/PageTemplates/TALES.py	Fri Sep 20 15:52:25 2002
@@ -222,7 +222,7 @@
         text = self.evaluate(expr)
         if text is Default or text is None:
             return text
-        return str(text)
+        return ustr(text)
 
     def evaluateStructure(self, expr):
         return self.evaluate(expr)