Fix list name parameter to sync_members
This commit is contained in:
parent
7873b964bd
commit
fa366e7e63
@ -48,7 +48,7 @@ def main(mailman_bin: Path, api: str, token: str, list_suffix: str):
|
|||||||
for name, members in certification_lists.items():
|
for name, members in certification_lists.items():
|
||||||
list_name = name + list_suffix
|
list_name = name + list_suffix
|
||||||
if list_name in existing_lists:
|
if list_name in existing_lists:
|
||||||
sync_members(mailman_bin, name, members)
|
sync_members(mailman_bin, list_name, members)
|
||||||
else:
|
else:
|
||||||
print(f"Skipping {list_name}, as it does not exist in Mailman")
|
print(f"Skipping {list_name}, as it does not exist in Mailman")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user