Fix get_gramps_ids method to return a list of str

This commit is contained in:
Nick Hall 2017-05-31 17:03:20 +01:00
parent 512fa615bf
commit ed8807f73a

View File

@ -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 = {