diff options
-rwxr-xr-x | Mailman/Cgi/subscribe.py | 2 | ||||
-rw-r--r-- | NEWS | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/Mailman/Cgi/subscribe.py b/Mailman/Cgi/subscribe.py index 3977268c..aefce493 100755 --- a/Mailman/Cgi/subscribe.py +++ b/Mailman/Cgi/subscribe.py @@ -151,7 +151,7 @@ def process_form(mlist, doc, cgidata, lang): if not captcha_response['success']: e_codes = COMMASPACE.join(captcha_response['error-codes']) results.append(_('reCAPTCHA validation failed: %(e_codes)s')) - except urllib2.URLError as e: + except urllib2.URLError, e: e_reason = e.reason results.append(_('reCAPTCHA could not be validated: %(e_reason)s')) @@ -5,6 +5,13 @@ Copyright (C) 1998-2018 by the Free Software Foundation, Inc. Here is a history of user visible changes to Mailman. +2.1.27 (xx-xxx-xxxx) + + Bug fixes and other patches + + - A Python 2.7 dependency introduced with the reCAPTCHA feature in 2.1.26 + has been removed. (LP: #1752658) + 2.1.26 (04-Feb-2018) Security |