summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-06-16 12:46:42 -0400
committerJesse Luehrs <doy@tozt.net>2014-06-16 12:51:18 -0400
commit8e1f78fd2158fc90e123ecc13ae89d3c8e6de544 (patch)
treeca0938fbf73935a752948d8b1e621ff8f0c3968f /bin
parentee0430152526a830614650dd9d307af349d2beb8 (diff)
downloadconf-8e1f78fd2158fc90e123ecc13ae89d3c8e6de544.tar.gz
conf-8e1f78fd2158fc90e123ecc13ae89d3c8e6de544.zip
make it easier to fix in the future
Diffstat (limited to 'bin')
-rwxr-xr-xbin/weather2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/weather b/bin/weather
index e8c48f4..6e4dde4 100755
--- a/bin/weather
+++ b/bin/weather
@@ -40,7 +40,7 @@ my $feelslike = int($conditions->feelslike_f);
my $precip = $forecast->{pop};
(my $description = $conditions->weather) =~ s/.* //;
-my $weather = $weather_pics{$description} // '?';
+my $weather = $weather_pics{$description} // $description;
my $time = DateTime->now(time_zone => 'local');