Skip to content

Commit af94769

Browse files
committed
Meta/cook: show author date in localtime
1 parent 41ebd16 commit af94769

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cook

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ sub get_commit {
205205
my $fh;
206206
open($fh, '-|',
207207
qw(git for-each-ref),
208-
"--format=%(refname:short) %(committerdate:iso8601)",
208+
"--format=%(refname:short) %(authordate:format-local:%Y-%m-%d)",
209209
"refs/heads/??/*")
210210
or die "$!: open for-each-ref";
211211
my @topic;
@@ -840,7 +840,7 @@ sub wildo_queue {
840840
for ($in_section) {
841841
return if (/^Graduated to/ || /^Discarded$/);
842842
}
843-
my $action = $topic->[6] || "Under discussion.";
843+
my $action = $topic->[6] || "Unclassified.";
844844
if (!exists $what->{$action}) {
845845
$what->{$action} = [];
846846
}

0 commit comments

Comments
 (0)