maintainer/scripts/feature-freeze-teams: Fix HTTP status line log

This commit is contained in:
Martin Weinelt 2022-10-03 02:43:34 +02:00
parent a62844b302
commit 594db69923
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -31,7 +31,7 @@ sub github_team_members {
push @ret, $_->{'login'};
}
} else {
print {*STDERR} "!! Requesting members of GitHub Team '$team_name' failed: $response->status_line";
print {*STDERR} "!! Requesting members of GitHub Team '$team_name' failed: " . $response->status_line;
}
return \@ret;