diff options
Diffstat (limited to 'app/Sensor.hs')
-rw-r--r-- | app/Sensor.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Sensor.hs b/app/Sensor.hs index 0b1ab0a..08f4f11 100644 --- a/app/Sensor.hs +++ b/app/Sensor.hs @@ -454,7 +454,7 @@ weatherForecast = do Nothing -> airTemperature Just (Next6Hours {summary, details}) -> - mconcat $ intersperse (P.pretty " ") [symbol, tempMax, tempMin, airTemperature] + mconcat $ intersperse (P.pretty " ") [mconcat [symbol, P.pretty " "], tempMax, tempMin, airTemperature] where symbol = P.pretty |