* src/PeopleStore.py: Make sure that the key is in unicode
format. For some reason, python does not always seem to do the conversion for us. svn: r2275
This commit is contained in:
parent
2f99f02e5f
commit
88bc403a84
@ -229,6 +229,8 @@ class PeopleStore:
|
||||
self.parent.parent.modify_statusbar()
|
||||
|
||||
def fill_row(self,name,iter=None):
|
||||
name = unicode(name)
|
||||
|
||||
if not iter:
|
||||
iter = self.tree_roots[name]
|
||||
child = self.model.iter_children(iter)
|
||||
|
Loading…
Reference in New Issue
Block a user