diff options
author | 2018-02-26 14:01:18 +0100 | |
---|---|---|
committer | 2018-02-26 20:55:19 +0100 | |
commit | c46f72b61e4dc989f520271bc98f7b15015fcdcf (patch) | |
tree | a535b4435ed7296365057a2d51be51eb0f170ecc /utils | |
parent | cfafcfa9af4ee04c563d3c682d2001a8516a866c (diff) | |
download | buildroot-c46f72b61e4dc989f520271bc98f7b15015fcdcf.tar.gz buildroot-c46f72b61e4dc989f520271bc98f7b15015fcdcf.tar.bz2 |
scanpypi: fix licence detection handling for unknown licences
Check for match object not being None.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/scanpypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/scanpypi b/utils/scanpypi index 1720c0c051..14ee87784a 100755 --- a/utils/scanpypi +++ b/utils/scanpypi @@ -436,7 +436,7 @@ class BuildrootPackage(): for license_file in license_files: with open(license_file) as lic_file: match = liclookup.match(lic_file.read()) - if match.confidence >= 90.0: + if match is not None and match.confidence >= 90.0: license_names.append(match.license.id) if len(license_names) > 0: |