From 85a4184ab473c407fb07cc46d73de70d2897157e Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 28 Feb 2021 19:55:31 +0000 Subject: [PATCH] Fix print_warning using print instead of say. --- make/console.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/console.pm b/make/console.pm index e6f8d4838..023108820 100644 --- a/make/console.pm +++ b/make/console.pm @@ -79,7 +79,7 @@ sub print_error { sub print_warning { print STDERR console_format "<|YELLOW Warning:|> "; for my $line (@_) { - print STDERR console_format $line; + say STDERR console_format $line; } } -- 2.39.2