* 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

@@ -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]