From 46d070bfeeda5926e222a49be02196cf7e8f69a8 Mon Sep 17 00:00:00 2001 From: Jim Mussared Date: Tue, 16 May 2023 17:24:26 +1000 Subject: [PATCH] tools/manifestfile.py: Fix license capturing. The license field was incorrectly being set to the version. Signed-off-by: Jim Mussared --- tools/manifestfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/manifestfile.py b/tools/manifestfile.py index f9b8a7035..3b613d9e1 100644 --- a/tools/manifestfile.py +++ b/tools/manifestfile.py @@ -143,7 +143,7 @@ class ManifestPackageMetadata: self.description = description self.version = version - self.license = version + self.license = license self.author = author self.pypi = pypi self.pypi_publish = pypi_publish