mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-23 06:22:24 +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_list = ", ".join(packages)
|
||||
else:
|
||||
packages_list = "and ".join(packages)
|
||||
packages_list = " and ".join(packages)
|
||||
return packages_list
|
||||
|
||||
@action("Send WIP package notification")
|
||||
|
Loading…
Reference in New Issue
Block a user