# HG changeset patch # User Goffi # Date 1556909095 -7200 # Node ID 782612c7854b81c7b7132ed295929cfd0aea9457 # Parent 4f600b4ae819465e54619794e5d36a28b706401d plugin list interests: add "namespace" in serialised data diff -r 4f600b4ae819 -r 782612c7854b sat/plugins/plugin_exp_list_of_interest.py --- a/sat/plugins/plugin_exp_list_of_interest.py Fri May 03 20:42:21 2019 +0200 +++ b/sat/plugins/plugin_exp_list_of_interest.py Fri May 03 20:44:55 2019 +0200 @@ -161,6 +161,8 @@ for item_elt in interests_data[0]: interest_data = {} interest_elt = item_elt.interest + if interest_elt.hasAttribute(u'namespace'): + interest_data[u'namespace'] = interest_elt.getAttribute(u'namespace') if interest_elt.hasAttribute(u'name'): interest_data[u'name'] = interest_elt.getAttribute(u'name') if interest_elt.hasAttribute(u'thumb_url'):