From b09a48a0c10178097d27329c6acaa44bb9061842 Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Sat, 30 May 2020 18:58:12 +0200 Subject: [PATCH] fedora-helper: Fixup comment Signed-off-by: Igor Raits --- tools/fedora-helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fedora-helper.py b/tools/fedora-helper.py index 17d30ad..1799c9a 100755 --- a/tools/fedora-helper.py +++ b/tools/fedora-helper.py @@ -168,7 +168,7 @@ def get_binary_license(ctx, source, add, verbose): ): continue licenses[p.lookup_str(solv.SOLVABLE_LICENSE)].add(p) - # XXX: This is pure hack and we should optimize license license in much better way + # XXX: This is pure hack and we should optimize license set in much better way if "MIT or ASL 2.0" in licenses and "ASL 2.0 or MIT" in licenses: licenses["MIT or ASL 2.0"].update(licenses.pop("ASL 2.0 or MIT"))