diff options
author | msapiro <> | 2006-10-11 16:50:24 +0000 |
---|---|---|
committer | msapiro <> | 2006-10-11 16:50:24 +0000 |
commit | 08fc6675c6b8d6358fcaf63dfa457bb0dcddf9ee (patch) | |
tree | 235cc37a126101f21b5a9b6e2ddaa54ae8f1ae10 | |
parent | 423719c05de9f868ad15da4fdfbf1218a9d7c586 (diff) | |
download | mailman2-08fc6675c6b8d6358fcaf63dfa457bb0dcddf9ee.tar.gz mailman2-08fc6675c6b8d6358fcaf63dfa457bb0dcddf9ee.tar.xz mailman2-08fc6675c6b8d6358fcaf63dfa457bb0dcddf9ee.zip |
Fixed admin.py so null VARHELP category is handled (1573393).
-rw-r--r-- | Mailman/Cgi/admin.py | 9 | ||||
-rw-r--r-- | NEWS | 4 |
2 files changed, 9 insertions, 4 deletions
diff --git a/Mailman/Cgi/admin.py b/Mailman/Cgi/admin.py index f70a0721..718bb0c8 100644 --- a/Mailman/Cgi/admin.py +++ b/Mailman/Cgi/admin.py @@ -319,10 +319,11 @@ def option_help(mlist, varhelp): elif len(reflist) == 3: category, subcat, varname = reflist options = mlist.GetConfigInfo(category, subcat) - for i in options: - if i and i[0] == varname: - item = i - break + if options: + for i in options: + if i and i[0] == varname: + item = i + break # Print an error message if we couldn't find a valid one if not item: bad = _('No valid variable name found.') @@ -6,6 +6,10 @@ Here is a history of user visible changes to Mailman. 2.1.10 (XX-XXX-200X) + Bug fixes and other patches + + - Fixed admin.py so null VARHELP category is handled (1573393). + 2.1.9 (12-Sep-2006) Security |