From: paul Date: Wed, 12 Jan 2011 17:50:10 +0000 (+0000) Subject: fixed problem with unicode strings (by omitting string explicit encoding, should... X-Git-Url: http://git.plutz.net/?p=tabnote;a=commitdiff_plain;h=b1fbac87a22a699c6b79f3388878a536825ae895 fixed problem with unicode strings (by omitting string explicit encoding, should think about that later) svn path=/trunk/; revision=6 --- 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): """