From: Michael Tremer Date: Mon, 22 Dec 2025 09:53:48 +0000 (+0000) Subject: dnsbl: Show update time rather than creation time X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db07e1843a421b2a358e440fd6941eeb8b866a26;p=dbl.git dnsbl: Show update time rather than creation time Signed-off-by: Michael Tremer --- diff --git a/src/scripts/dnsbl.in b/src/scripts/dnsbl.in index d87cda7..841e63a 100644 --- a/src/scripts/dnsbl.in +++ b/src/scripts/dnsbl.in @@ -191,8 +191,7 @@ class CLI(object): table.add_column(_("Name")) table.add_column(_("Slug")) table.add_column(_("License")) - table.add_column(_("Created At")) - table.add_column(_("Created By")) + table.add_column(_("Last Updated")) table.add_column(_("Listed Unique Domains")) # Show all lists @@ -201,8 +200,7 @@ class CLI(object): list.name, list.slug, list.license, - list.created_at.isoformat(), - list.created_by, + list.updated_at.isoformat() if list.updated_at else _("N/A"), "%s" % len(list), )