aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman
diff options
context:
space:
mode:
authorjimpop@template.hostname <>2015-11-04 21:43:43 +0000
committerjimpop@template.hostname <>2015-11-04 21:43:43 +0000
commita777ae450ed966ca75f22c140fee938c5fd37996 (patch)
tree7657371157aea87fa3d2f5f2d5aba92d1c99d5d4 /Mailman
parent6bd19f91b98517af02a3dae766d49c1610967815 (diff)
downloadmailman2-a777ae450ed966ca75f22c140fee938c5fd37996.tar.gz
mailman2-a777ae450ed966ca75f22c140fee938c5fd37996.tar.xz
mailman2-a777ae450ed966ca75f22c140fee938c5fd37996.zip
Removed 2 development debugging lines
Diffstat (limited to 'Mailman')
-rw-r--r--Mailman/Utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py
index 516514ac..a4eb05da 100644
--- a/Mailman/Utils.py
+++ b/Mailman/Utils.py
@@ -1260,14 +1260,9 @@ def IsVerboseMember(mlist, email):
t = time.time()
recentMemberPostings.setdefault(email,[]).append(t)
- syslog('vette', 'DEBUG: %s: Appended %f to recentMemberPostings[%s] (%d).',
- mlist.real_name, t, email, len(recentMemberPostings[email]))
-
for t in recentMemberPostings[email]:
if t < time.time() - float(interval):
recentMemberPostings[email].remove(t)
- syslog('vette', 'DEBUG: %s: Removed %f from recentMemberPostings[%s] (%d).',
- mlist.real_name, t, email, len(recentMemberPostings[email]))
return len(recentMemberPostings[email]) >= threshold