Fix get_gramps_ids method to return a list of str
This commit is contained in:
parent
512fa615bf
commit
ed8807f73a
@ -1211,7 +1211,7 @@ class DbBsddbRead(DbReadBase, Callback):
|
||||
}
|
||||
|
||||
table = key2table[obj_key]
|
||||
return list(table.keys())
|
||||
return [key.decode('utf-8') for key in table.keys()]
|
||||
|
||||
def has_gramps_id(self, obj_key, gramps_id):
|
||||
key2table = {
|
||||
|
Loading…
Reference in New Issue
Block a user