From 6a403dec40fd89f08d9fcb478e27e5fb23ec6d73 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 27 May 2021 14:36:48 +0200 Subject: [PATCH] Bug 28386: Remove _others_ from the contributor list We arbitrarily use "_others_" for unknown contributors (biblibre, bywater, ptfs-e teams, etc) Signed-off-by: Jonathan Druart --- about.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/about.pl b/about.pl index a814acc88f..3cba9cec28 100755 --- a/about.pl +++ b/about.pl @@ -681,6 +681,7 @@ my $contributors = -e "$docdir" . "/contributors.yaml" ? YAML::XS::LoadFile( "$docdir" . "/contributors.yaml" ) : {}; +delete $contributors->{_others_}; for my $version ( sort { $a <=> $b } keys %{$teams->{team}} ) { for my $role ( keys %{ $teams->{team}->{$version} } ) { my $normalized_role = "$role"; -- 2.39.5