* src/GenericFilter.py (GrampsFilterComboBox.get_value): Do not

convert key to unicode.


svn: r4976
This commit is contained in:
Alex Roitman 2005-07-29 16:36:51 +00:00
parent 478f90b8e8
commit 3f8c9298a4
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-07-29 Alex Roitman <shura@gramps-project.org>
* src/GenericFilter.py (GrampsFilterComboBox.get_value): Do not
convert key to unicode.
2005-07-28 Don Allingham <don@gramps-project.org>
* src/MergePeople.py: prevent attempts to merge a person and his/her
spouse, prevent merging of child and parent.

View File

@ -2380,7 +2380,7 @@ class GrampsFilterComboBox(gtk.ComboBox):
active = self.get_active()
if active < 0:
return None
key = unicode(self.store[active][0])
key = self.store[active][0]
return self.map[key]