summaryrefslogtreecommitdiff
path: root/cron
diff options
context:
space:
mode:
authorbwarsaw2000-04-12 02:23:42 +0000
committerbwarsaw2000-04-12 02:23:42 +0000
commit9ca1af53d9078f7abd9e5e0dbee69af11290d8d9 (patch)
treed59f6c6980e7301b82675aeb4b3cb6e09a23e073 /cron
parent85ab58f5898db482f6ca44453c694f3734c50547 (diff)
downloadmailman-9ca1af53d9078f7abd9e5e0dbee69af11290d8d9.tar.gz
mailman-9ca1af53d9078f7abd9e5e0dbee69af11290d8d9.tar.zst
mailman-9ca1af53d9078f7abd9e5e0dbee69af11290d8d9.zip
pending_requests(): missing parens made the RHS of the % not a tuple.
Odd this has never been caught before!
Diffstat (limited to 'cron')
-rwxr-xr-xcron/checkdbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cron/checkdbs b/cron/checkdbs
index 5bfeeed9f..cf5dae093 100755
--- a/cron/checkdbs
+++ b/cron/checkdbs
@@ -69,7 +69,7 @@ def pending_requests(mlist):
pending.append('Pending subscriptions:')
first = 0
when, addr, passwd, digest = mlist.GetRecord(id)
- pending.append(' %s %s' % addr, time.ctime(when))
+ pending.append(' %s %s' % (addr, time.ctime(when)))
first = 1
for id in mlist.GetHeldMessageIds():
if first: