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.
2 parents 14abf59 + a3ae749 commit 474768cCopy full SHA for 474768c
src/fosslight_source/_parsing_scanoss_file.py
@@ -55,6 +55,8 @@ def parsing_scanResult(scanoss_report):
55
for license in findings[0]['licenses']:
56
57
license_lower = license['name'].lower()
58
+ if license_lower.endswith('.'):
59
+ license_lower = license_lower[:-1]
60
for word in replace_word:
61
if word in license_lower:
62
license_lower = license_lower.replace(word, "")
0 commit comments