diff --git a/rust2rpm/licensing.py b/rust2rpm/licensing.py index e5ea029..d109847 100644 --- a/rust2rpm/licensing.py +++ b/rust2rpm/licensing.py @@ -58,6 +58,6 @@ def translate_license_fedora(license): def translate_license(target, license): license = translate_slashes(license) - if target in {"fedora", "epel", "mageia"}: + if target in {"mageia"}: return translate_license_fedora(license) return license, None