# HG changeset patch # User Goffi # Date 1554663574 -7200 # Node ID 82d8243e6ad1d638e3df68a085a5b29eddc8fb80 # Parent ca55e02a6fc88d66c101e302c560dfddcceae16f quick frontend (contact list): fixed profile filtering in fill() diff -r ca55e02a6fc8 -r 82d8243e6ad1 sat_frontends/quick_frontend/quick_contact_list.py --- a/sat_frontends/quick_frontend/quick_contact_list.py Sun Apr 07 20:58:15 2019 +0200 +++ b/sat_frontends/quick_frontend/quick_contact_list.py Sun Apr 07 20:59:34 2019 +0200 @@ -967,7 +967,7 @@ except AttributeError: to_fill = self._to_fill = set() - # if check if profiles have already been filled + # we check if profiles have already been filled # to void filling them several times filled = to_fill.copy() @@ -975,7 +975,7 @@ assert profile in self._clist to_fill.add(profile) else: - to_fill.update(self._clist.items()) + to_fill.update(self._clist.keys()) remaining = to_fill.difference(filled) if remaining != to_fill: