From fe62282015aa920b33ebf191be63b7d57351b235 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Wed, 19 Feb 2020 17:05:03 -0800 Subject: [PATCH] Plugins/Wttr: remove "Weather for" prefix --- Plugins/Wttr.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Wttr.pm b/Plugins/Wttr.pm index 96442548..b5604f61 100644 --- a/Plugins/Wttr.pm +++ b/Plugins/Wttr.pm @@ -143,7 +143,7 @@ sub get_wttr { $location =~ s/United States of America/USA/; - my $result = "Weather for $location: "; + my $result = "$location: "; my $c = $wttr->{'current_condition'}->[0]; my $w = $wttr->{'weather'}->[0];