diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2017-06-03 10:57:51 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2017-06-03 10:57:51 +0900 |
commit | ec87166d9d23a54701af5cc2e4c8f18df399bf14 (patch) | |
tree | 15767868f0a461639193e88c1fa65148fb9b41a3 /Mailman/Utils.py | |
parent | 13a2ab157232fa736049051cc01213473d0d22f5 (diff) | |
parent | a6669234ed864cadd85fdaf3f8cc86e442bdc30f (diff) | |
download | mailman2-ec87166d9d23a54701af5cc2e4c8f18df399bf14.tar.gz mailman2-ec87166d9d23a54701af5cc2e4c8f18df399bf14.tar.xz mailman2-ec87166d9d23a54701af5cc2e4c8f18df399bf14.zip |
Update to 2.1.24
Diffstat (limited to 'Mailman/Utils.py')
-rw-r--r-- | Mailman/Utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py index 739def1d..75481563 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2016 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2017 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -1391,7 +1391,7 @@ fact is returned.""" del recentMemberPostings[addr] if not mlist.isMember(email): return False - return (len(recentMemberPostings.get(email, [])) >= + return (len(recentMemberPostings.get(email, [])) > mlist.member_verbosity_threshold ) |