From 8938226e28bfb7b711c4f237e738012499668020 Mon Sep 17 00:00:00 2001 From: putro <putro@autistici.org> Date: Sun, 9 Oct 2022 15:20:02 +0200 Subject: [PATCH] updated last_post with additional info: creation time and list domain --- last_post.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/last_post.py b/last_post.py index a3ab74f..7122d60 100755 --- a/last_post.py +++ b/last_post.py @@ -18,7 +18,8 @@ import time def last_post(mlist): - print '%s: Last post at %s' % ( - mlist.real_name, + print '%s@%s: Created at %s - Last post at %s' % ( + mlist.real_name, mlist.host_name, + time.ctime(mlist.created_at), time.ctime(mlist.last_post_time) ) -- GitLab