diff options
| author | bwarsaw | 2006-09-24 20:43:56 +0000 |
|---|---|---|
| committer | bwarsaw | 2006-09-24 20:43:56 +0000 |
| commit | 99a4f0ef16e6dfddafbd396896afb97821528f16 (patch) | |
| tree | 0cabc1a41a6532de1ad63a1b43bd2e941150d0ec /Mailman/Cgi/listinfo.py | |
| parent | 3da41d89a8c827383b2256b965fa1be8b179b9cd (diff) | |
| download | mailman-99a4f0ef16e6dfddafbd396896afb97821528f16.tar.gz mailman-99a4f0ef16e6dfddafbd396896afb97821528f16.tar.zst mailman-99a4f0ef16e6dfddafbd396896afb97821528f16.zip | |
As Mark discovered, we need to load the configuration in the driver script for
the web u/i to work. This also fixes the use of Utils.list_names() in the
list and admin overviews. This API now returns a set, but the CGIs want to
sort them, so we need to turn them back into lists.
This change also elaborates an exception so that the list name is reported.
Diffstat (limited to 'Mailman/Cgi/listinfo.py')
| -rw-r--r-- | Mailman/Cgi/listinfo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/listinfo.py b/Mailman/Cgi/listinfo.py index d8281ccea..37c7f8ea9 100644 --- a/Mailman/Cgi/listinfo.py +++ b/Mailman/Cgi/listinfo.py @@ -82,7 +82,7 @@ def listinfo_overview(msg=''): # Skip any mailing lists that isn't advertised. advertised = [] - listnames = Utils.list_names() + listnames = list(Utils.list_names()) listnames.sort() for name in listnames: |
