summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2020-09-18 10:19:50 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-09-21 08:28:19 +0200
commitd6753cfcf344947790fc7ab12874667fd593fa34 (patch)
tree9fc422bf3c3f5c1116e5c7d4147e177d6dae8271 /scripts
parentbcda7bce5c0cd6a563ed11e2aea27a80a75cd837 (diff)
downloadbarebox-d6753cfcf344947790fc7ab12874667fd593fa34.tar.gz
barebox-d6753cfcf344947790fc7ab12874667fd593fa34.tar.xz
scripts/spdxcheck: fix usage of non-existing variables
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/spdxcheck.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/spdxcheck.py b/scripts/spdxcheck.py
index 723bfa4ebf..7e08c6e413 100755
--- a/scripts/spdxcheck.py
+++ b/scripts/spdxcheck.py
@@ -58,13 +58,13 @@ def read_spdxdata(repo):
elif l.startswith('SPDX-Licenses:'):
for lic in l.split(':')[1].upper().strip().replace(' ', '').replace('\t', '').split(','):
if not lic in spdx.licenses:
- raise SPDXException(None, 'Exception %s missing license %s' %(ex, lic))
+ raise SPDXException(None, 'Exception %s missing license %s' %(exception, lic))
spdx.exceptions[exception].append(lic)
elif l.startswith("License-Text:"):
if exception:
if not len(spdx.exceptions[exception]):
- raise SPDXException(el, 'Exception %s is missing SPDX-Licenses' %excid)
+ raise SPDXException(el, 'Exception %s is missing SPDX-Licenses' %exception)
spdx.exception_files += 1
else:
spdx.license_files += 1