diff options
author | Mark Sapiro <mark@msapiro.net> | 2016-05-17 12:33:14 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2016-05-17 12:33:14 -0700 |
commit | 686cd52aa51e7a01a321ef83581b75c3de0efc55 (patch) | |
tree | b8106ac65eb010a07384255390a4fa77c3ee7fc8 /Mailman/Cgi/listinfo.py | |
parent | 631b834dd33fd65bf3c6e901980fb96c13a8d153 (diff) | |
download | mailman2-686cd52aa51e7a01a321ef83581b75c3de0efc55.tar.gz mailman2-686cd52aa51e7a01a321ef83581b75c3de0efc55.tar.xz mailman2-686cd52aa51e7a01a321ef83581b75c3de0efc55.zip |
Catch MMUnknownListError in case list is removed after listing names.
Diffstat (limited to 'Mailman/Cgi/listinfo.py')
-rw-r--r-- | Mailman/Cgi/listinfo.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Mailman/Cgi/listinfo.py b/Mailman/Cgi/listinfo.py index c13fdb26..b07e2201 100644 --- a/Mailman/Cgi/listinfo.py +++ b/Mailman/Cgi/listinfo.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2015 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2016 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -88,7 +88,11 @@ def listinfo_overview(msg=''): listnames.sort() for name in listnames: - mlist = MailList.MailList(name, lock=0) + try: + mlist = MailList.MailList(name, lock=0) + except Errors.MMUnknownListError: + # The list could have been deleted by another process. + continue if mlist.advertised: if mm_cfg.VIRTUAL_HOST_OVERVIEW and ( mlist.web_page_url.find('/%s/' % hostname) == -1 and |