Meta/cook: show author date in localtime

Junio C Hamano committed Jun 5, 2025 at 16:05 UTC af94769838271970b98d66c3c4f919efa10f0a75
1 file changed +2 -2
cook
+2 -2
@@ -205,7 +205,7 @@ sub get_commit {
205 my $fh;
206 open($fh, '-|',
207 qw(git for-each-ref),
208 - "--format=%(refname:short) %(committerdate:iso8601)",
208 + "--format=%(refname:short) %(authordate:format-local:%Y-%m-%d)",
209 "refs/heads/??/*")
210 or die "$!: open for-each-ref";
211 my @topic;
@@ -840,7 +840,7 @@ sub wildo_queue {
840 for ($in_section) {
841 return if (/^Graduated to/ || /^Discarded$/);
842 }
843 - my $action = $topic->[6] || "Under discussion.";
843 + my $action = $topic->[6] || "Unclassified.";
844 if (!exists $what->{$action}) {
845 $what->{$action} = [];
846 }