From 2bc322ad9fb8e7eca922a7e1294ab2cd282534e4 Mon Sep 17 00:00:00 2001 From: waynieack Date: Thu, 15 Dec 2016 22:15:29 -0600 Subject: [PATCH] Fix Space --- lib/site/Geo/WeatherNOAA.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/site/Geo/WeatherNOAA.pm b/lib/site/Geo/WeatherNOAA.pm index 9bbb6dfcf..57d29170f 100644 --- a/lib/site/Geo/WeatherNOAA.pm +++ b/lib/site/Geo/WeatherNOAA.pm @@ -580,7 +580,7 @@ sub get_city_hourly { #print STDERR "$line\n"; #'@0 A15 @15 A9 @24 A5 @29 A5 @34 A4 @39 A8 @47 A8 @55 A8', $line; - return {} if $values[3] eq 'NOT AVBL'; # Return ref to empty hash + return {} if $values[3] eq 'NOT AVBL'; # Return ref to empty hash my %retValue; foreach my $i ( 0 .. $#fields ) {