diff options
| author | mailman | 1998-03-24 05:06:32 +0000 |
|---|---|---|
| committer | mailman | 1998-03-24 05:06:32 +0000 |
| commit | fb9d738c87d4e17a2b4b38aff9e98d1c6404fa4f (patch) | |
| tree | de72791c62febd1486e1b789cf13cc59c2df514e | |
| parent | 39e3b8659f49c7552df059eabd49231bdb549b6c (diff) | |
| download | mailman-fb9d738c87d4e17a2b4b38aff9e98d1c6404fa4f.tar.gz mailman-fb9d738c87d4e17a2b4b38aff9e98d1c6404fa4f.tar.zst mailman-fb9d738c87d4e17a2b4b38aff9e98d1c6404fa4f.zip | |
| -rwxr-xr-x | cron/checkdbs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cron/checkdbs b/cron/checkdbs index ff84b3dbb..9772ad3bc 100755 --- a/cron/checkdbs +++ b/cron/checkdbs @@ -50,10 +50,11 @@ def pending_requests(list): pending.append("") pending.append("Pending posts:") for req in requests['post']: - id, when, (who, msg), objection = req - pending.append("\t%s %s:\n\t\t%s" % (string.strip(who), - time.ctime(when), - `string.strip(objection)`)) + id, when, (who, msg), cause, subj = req + pending.append("\tFrom: %s on %s:\n\tCause: %s" + % (string.strip(who), + time.ctime(when), + `string.strip(cause)`)) return string.join(pending, '\n') if __name__ == "__main__": |
