From 9ca1af53d9078f7abd9e5e0dbee69af11290d8d9 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Wed, 12 Apr 2000 02:23:42 +0000 Subject: pending_requests(): missing parens made the RHS of the % not a tuple. Odd this has never been caught before! --- cron/checkdbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.3.1