Fix invalid mailing list names

This commit is contained in:
Drew DeVault 2020-04-29 13:34:06 -04:00
parent 7468d5ce0b
commit 99f5564750
1 changed files with 1 additions and 0 deletions

View File

@ -91,6 +91,7 @@ Mailing list for end-user discussion and questions related to the
template = templates[template]
for list_name in template:
list_name = list_name.lower() # Per lists.sr.ht naming rules
try:
mailing_list = lists.get_list(owner, list_name)
except: