[Zope-Checkins] CVS: Zope/lib/python/TAL - TALInterpreter.py:1.69.6.10
Andy McKay
andy@agmweb.ca
Tue, 17 Dec 2002 19:33:43 -0500
Update of /cvs-repository/Zope/lib/python/TAL
In directory cvs.zope.org:/tmp/cvs-serv15145
Modified Files:
Tag: Zope-2_6-branch
TALInterpreter.py
Log Message:
Escape quotes correctly
=== Zope/lib/python/TAL/TALInterpreter.py 1.69.6.9 => 1.69.6.10 ===
--- Zope/lib/python/TAL/TALInterpreter.py:1.69.6.9 Wed Oct 9 10:37:38 2002
+++ Zope/lib/python/TAL/TALInterpreter.py Tue Dec 17 19:33:43 2002
@@ -486,7 +486,7 @@
if text is self.Default:
self.interpret(stuff[1])
return
- s = escape(text)
+ s = escape(text, 1)
self._stream_write(s)
i = s.rfind('\n')
if i < 0: