]> git.plutz.net Git - tabnote/commitdiff
fixed problem with unicode strings (by omitting string explicit encoding, should...
authorpaul <paul@plutz.net>
Wed, 12 Jan 2011 17:50:10 +0000 (17:50 +0000)
committerpaul <paul@plutz.net>
Wed, 12 Jan 2011 17:50:10 +0000 (17:50 +0000)
svn path=/trunk/; revision=6

tabnote

diff --git a/tabnote b/tabnote
index 897685814f6ef5c98eee948e99b53bbddf55c04d..ee5d59cb50faba4828f235f8dd13f46977f6f773 100755 (executable)
--- a/tabnote
+++ b/tabnote
@@ -81,7 +81,7 @@ class Persistence():
     for c in string:
       if c == '"': ret += '""'
       else: ret += c
     for c in string:
       if c == '"': ret += '""'
       else: ret += c
-    return str(ret)
+    return ret
 
   def allRecords(self):
     """
 
   def allRecords(self):
     """