|
From: Martynas J. <mj...@us...> - 2006-02-18 09:55:06
|
Update of /cvsroot/opendict/opendict/lib/extra In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8540/lib/extra Modified Files: dictdlib.py Log Message: 1. Bugfix: DICT dictionaries didn't support other that UTF-8 encoding. 2. Search entry was not updated after clicking a link in translation window. 3. README.txt updated. Index: dictdlib.py =================================================================== RCS file: /cvsroot/opendict/opendict/lib/extra/dictdlib.py,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- dictdlib.py 13 Jan 2005 22:17:34 -0000 1.3 +++ dictdlib.py 18 Feb 2006 09:54:57 -0000 1.4 @@ -322,7 +322,7 @@ return retval for start, length in self.indexentries[word]: self.dictfile.seek(start) - retval.append(unicode(self.dictfile.read(length), "utf-8")) + retval.append(self.dictfile.read(length)) return retval |