From b1fbac87a22a699c6b79f3388878a536825ae895 Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 12 Jan 2011 17:50:10 +0000 Subject: [PATCH] fixed problem with unicode strings (by omitting string explicit encoding, should think about that later) svn path=/trunk/; revision=6 --- tabnote | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabnote b/tabnote index 8976858..ee5d59c 100755 --- a/tabnote +++ b/tabnote @@ -81,7 +81,7 @@ class Persistence(): for c in string: if c == '"': ret += '""' else: ret += c - return str(ret) + return ret def allRecords(self): """ -- 2.39.2