summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:32:00 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:32:00 +0000
commit365001af125e820500d18bd1396e70f136912158 (patch)
tree2d61bc622c42fa7b00b58175f8f548b551b2e076 /bin
parentAdding upstream version 2.2.4. (diff)
downloadidentify-365001af125e820500d18bd1396e70f136912158.tar.xz
identify-365001af125e820500d18bd1396e70f136912158.zip
Adding upstream version 2.2.11.upstream/2.2.11
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/vendor-licenses4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/vendor-licenses b/bin/vendor-licenses
index 2dbde36..1303558 100755
--- a/bin/vendor-licenses
+++ b/bin/vendor-licenses
@@ -33,11 +33,11 @@ def main() -> int:
_, data, license_text = contents.split('---\n', 2)
- spdx, = [
+ spdx, = (
line[len('spdx-id:'):].strip()
for line in data.splitlines()
if line.startswith('spdx-id:')
- ]
+ )
licenses.append((spdx, license_text))