mirror of
https://github.com/minetest/contentdb.git
synced 2025-01-10 23:17:37 +01:00
Fix missing space before "and" in package list (#357)
This commit is contained in:
parent
1c63bf0beb
commit
56539bb369
@ -190,7 +190,7 @@ def _package_list(packages: List[str]):
|
|||||||
packages[len(packages) - 1] = "and " + packages[len(packages) - 1]
|
packages[len(packages) - 1] = "and " + packages[len(packages) - 1]
|
||||||
packages_list = ", ".join(packages)
|
packages_list = ", ".join(packages)
|
||||||
else:
|
else:
|
||||||
packages_list = "and ".join(packages)
|
packages_list = " and ".join(packages)
|
||||||
return packages_list
|
return packages_list
|
||||||
|
|
||||||
@action("Send WIP package notification")
|
@action("Send WIP package notification")
|
||||||
|
Loading…
Reference in New Issue
Block a user