# HG changeset patch # User Goffi # Date 1562697710 -7200 # Node ID f9091f4e04f0ddd4b4af631c5535f3d70af8e396 # Parent b300eaec53b6967855816032f668f6a4c05c3993 browser (contact_group): fixed bad property name used in closeAndSave: bad property name was used in closeAndSave resulting in a crash when used wanted to save modifications. fix 309 diff -r b300eaec53b6 -r f9091f4e04f0 browser/sat_browser/contact_group.py --- a/browser/sat_browser/contact_group.py Tue Jul 09 20:20:46 2019 +0200 +++ b/browser/sat_browser/contact_group.py Tue Jul 09 20:41:50 2019 +0200 @@ -224,7 +224,7 @@ def closeAndSave(self): """Call bridge methods to save the changes and close the dialog""" - old_groups_by_entity = contact_list.JIDDict(self.host.contact_list.roster_groups_by_entity) + old_groups_by_entity = contact_list.JIDDict(self.host.contact_list.roster_groups_by_entities) old_entities = old_groups_by_entity.keys() result = {jid.JID(item): keys for item, keys in self.groups.getKeysByItem().iteritems()} groups_by_entity = contact_list.JIDDict(result)