mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
Fix choosing SPDX license during plugin init
The keys used to be lower case, but were changed to mixed case
in this commit:
068e268c63
The identfier are now used as inputted by the user.
This commit is contained in:
parent
1fe53b4c56
commit
33d7892e13
@ -36,10 +36,10 @@ def load() -> None:
|
|||||||
def get(id: str) -> dict[str, str]:
|
def get(id: str) -> dict[str, str]:
|
||||||
if not spdx_list:
|
if not spdx_list:
|
||||||
load()
|
load()
|
||||||
return spdx_list[id.lower()]
|
return spdx_list[id]
|
||||||
|
|
||||||
|
|
||||||
def valid(id: str) -> bool:
|
def valid(id: str) -> bool:
|
||||||
if not spdx_list:
|
if not spdx_list:
|
||||||
load()
|
load()
|
||||||
return id.lower() in spdx_list
|
return id in spdx_list
|
||||||
|
Loading…
Reference in New Issue
Block a user