------------------------------------------------------------
revno: 1073
committer: Mark Sapiro <[EMAIL PROTECTED]>
branch nick: 2.1
timestamp: Sat 2008-04-26 17:59:18 -0700
message:
Fixed cmd_subscribe.py. The last change broke it for bare subscribe commands
with no options.
modified:
Mailman/Commands/cmd_subscribe.py
=== modified file 'Mailman/Commands/cmd_subscribe.py'
--- a/Mailman/Commands/cmd_subscribe.py 2008-03-20 03:07:51 +0000
+++ b/Mailman/Commands/cmd_subscribe.py 2008-04-27 00:59:18 +0000
@@ -71,7 +71,8 @@
return STOP
argnum += 1
# Fix the password/digest issue
- if digest is None and password.lower() in ('digest', 'nodigest'):
+ if (digest is None
+ and password and password.lower() in ('digest', 'nodigest')):
if password.lower() == 'digest':
digest = 1
else:
--
Stable, maintained release series
https://code.launchpad.net/~mailman-coders/mailman/2.1
You are receiving this branch notification because you are subscribed to it.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org