diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2023-05-16 17:24:26 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-05-19 21:56:38 +1000 |
| commit | 46d070bfeeda5926e222a49be02196cf7e8f69a8 (patch) | |
| tree | 1dca2299a9b242ea84421e86f8db6ee9aa9c19d4 | |
| parent | b5c81f6bfbd77ab5b0c3590d6ea7a6a3bb1e12f2 (diff) | |
tools/manifestfile.py: Fix license capturing.
The license field was incorrectly being set to the version.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
| -rw-r--r-- | tools/manifestfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
