From b971b72af82682686f58fce645c0a2e39a295bd3 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 26 Apr 2021 11:52:43 -0500 Subject: [PATCH] put current weather and forecast on separate lines the long location string means this is often bleeding into two lines at the very end anyway, so this just looks nicer --- weather/ircplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather/ircplugin.py b/weather/ircplugin.py index 405b4e4..8552618 100644 --- a/weather/ircplugin.py +++ b/weather/ircplugin.py @@ -44,7 +44,7 @@ class Weather(Plugin): f"Precipitation {weather['current']['precipitation']}. " f"Pressure {weather['current']['pressure']}. " f"Cloud cover {weather['current']['cloud_cover']}. " - f"UV index {weather['current']['uv_index']}. " + f"UV index {weather['current']['uv_index']}.\n" f"Today: {weather['today_forecast']['noteworthy']}, " f"High {weather['today_forecast']['high_F']}/{weather['today_forecast']['high_C']}, " f"Low {weather['today_forecast']['low_F']}/{weather['today_forecast']['low_C']}. "