We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc2c5a commit 6b2320aCopy full SHA for 6b2320a
etc/scripts/utils_thirdparty.py
@@ -3089,6 +3089,5 @@ def compute_normalized_license_expression(declared_licenses):
3089
3090
return pypi.compute_normalized_license(declared_licenses)
3091
except ImportError:
3092
- # Scancode is not installed, clean and join all the licenses
3093
- lics = [python_safe_name(l).lower() for l in declared_licenses]
3094
- return " AND ".join(lics).lower()
+ # Scancode is not installed, we join all license strings and return it
+ return " ".join(declared_licenses).lower()
0 commit comments