------------------------------------------------------------ revno: 1693 fixes bug: https://launchpad.net/bugs/1667215 committer: Mark Sapiro <m...@msapiro.net> branch nick: 2.1 timestamp: Wed 2017-02-22 22:05:56 -0800 message: Fixed an uncaught TypeError in the subscribe CGI. 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 2016-07-14 21:27:49 +0000 +++ Mailman/Cgi/subscribe.py 2017-02-23 06:05:56 +0000 @@ -185,7 +185,7 @@ if digestflag: try: digest = int(digestflag) - except ValueError: + except (TypeError, ValueError): digest = 0 else: digest = mlist.digest_is_default === modified file 'NEWS' --- NEWS 2017-02-15 06:30:03 +0000 +++ NEWS 2017-02-23 06:05:56 +0000 @@ -26,6 +26,8 @@ Bug fixes and other patches + - Fixed an uncaught TypeError in the subscribe CGI. (LP: #1667215) + - Added recognition for a newly seen mailEnable bounce. - Fixed an uncaught NotAMemberError when a member is removed before a
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org