* src/SourceView.py: fix source query dialog

* src/ansel_utf8.py: fix unicode conversion
* src/GrampsDb/_GrampsDbBase.py: fix surname detection
* src/GrampsDb/_ReadGedcomp.py: fix note importation


svn: r5893
This commit is contained in:
Don Allingham
2006-02-07 03:07:31 +00:00
parent 63adbbaaf0
commit 034e02ecca
5 changed files with 19 additions and 10 deletions

View File

@@ -302,7 +302,7 @@ def ansel_to_utf8(s):
head = s[0]
s = s[1:]
buff.write(head)
ans = buff.getvalue()
ans = unicode(buff.getvalue())
buff.close()
return ans