From f97c77ef86f2cc05db52184dfdbfbaeb3b950526 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) --- about.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/about.pl b/about.pl index a814acc88f5..3cba9cec28b 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.20.1