------------------------------------------------------------
revno: 1745
fixes bug: https://launchpad.net/bugs/1752658
committer: Mark Sapiro <m...@msapiro.net>
branch nick: 2.1
timestamp: Thu 2018-03-01 09:26:02 -0800
message:
  Removed a Python 2.7 dependency introduced in 2.1.26.
modified:
  Mailman/Cgi/subscribe.py
  NEWS


--
lp:mailman/2.1
https://code.launchpad.net/~mailman-coders/mailman/2.1

Your team Mailman Checkins is subscribed to branch lp:mailman/2.1.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'Mailman/Cgi/subscribe.py'
--- Mailman/Cgi/subscribe.py	2018-01-30 17:36:18 +0000
+++ Mailman/Cgi/subscribe.py	2018-03-01 17:26:02 +0000
@@ -151,7 +151,7 @@
             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'))
 

=== modified file 'NEWS'
--- NEWS	2018-02-04 16:41:19 +0000
+++ NEWS	2018-03-01 17:26:02 +0000
@@ -5,6 +5,13 @@
 
 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

_______________________________________________
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to