summaryrefslogtreecommitdiff
path: root/talinterpreter.py
diff options
context:
space:
mode:
authorAdam Summers <adams@svn.zope.org>2003-07-15 06:06:56 +0000
committerAdam Summers <adams@svn.zope.org>2003-07-15 06:06:56 +0000
commitc17e30b0ec1bab62702de3cb14092a29f9e34395 (patch)
tree598a3ec6edbb4fa444d6bf17717acb4928c99a6d /talinterpreter.py
parent0fbd4b7ab54a0ecf7db137627a01517690df8fe8 (diff)
downloadzope-tal-c17e30b0ec1bab62702de3cb14092a29f9e34395.tar.gz
Changed str() calls to unicode() calls to allow for non-ascii characters
schema-defined object fields
Diffstat (limited to 'talinterpreter.py')
-rw-r--r--talinterpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/talinterpreter.py b/talinterpreter.py
index d8f4835..ff112cb 100644
--- a/talinterpreter.py
+++ b/talinterpreter.py
@@ -569,7 +569,7 @@ class TALInterpreter:
if structure is self.Default:
self.interpret(block)
return
- text = str(structure)
+ text = unicode(structure)
if not (repldict or self.strictinsert):
# Take a shortcut, no error checking
self.stream_write(text)