diff --git a/plugins/tfw.pm b/plugins/tfw.pm index 99857e6..8280d80 100644 --- a/plugins/tfw.pm +++ b/plugins/tfw.pm @@ -21,10 +21,12 @@ sub { my $weathertext = $weather->as_text; $weathertext =~ s/\n/ /g; #filter them so when it goes ITS FUCKING NICE\nAND THUNDERING it'll display properly + my $remarktext = $remark->as_text; + $remarktext =~ s/\n/ /g; print $location->as_text; print " "; - print $weather->as_text; + print $weathertext; print " "; - print '(', $remark->as_text, ')'; + print '(', $remarktext, ')'; }