# HG changeset patch # User Goffi # Date 1589837515 -7200 # Node ID 0c3b7ee2628fb0f32e281cc9625ddb719627dd68 # Parent 1352564e02028bfe93d260d64ad55f9e6d9fa959 plugin list of interest: fixed wrong variable used in a log diff -r 1352564e0202 -r 0c3b7ee2628f sat/plugins/plugin_exp_list_of_interest.py --- a/sat/plugins/plugin_exp_list_of_interest.py Mon May 18 23:30:55 2020 +0200 +++ b/sat/plugins/plugin_exp_list_of_interest.py Mon May 18 23:31:55 2020 +0200 @@ -232,7 +232,7 @@ interest_elt = next(item.elements(NS_LIST_INTEREST, "interest")) except StopIteration: log.warning(_("Missing interest element: {xml}").format( - xml=interest_elt.toXml())) + xml=item.toXml())) continue if interest_elt.getAttribute("namespace") == namespace: filtered_items.append(item)