From a9f0baaddd663013ea4d251abac7b69130aded73 Mon Sep 17 00:00:00 2001 From: Rusty Bower Date: Tue, 4 Apr 2023 20:16:17 -0500 Subject: [PATCH] owm: fixing overzealous exclude --- sopel_modules/weather/providers/weather/openweathermap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sopel_modules/weather/providers/weather/openweathermap.py b/sopel_modules/weather/providers/weather/openweathermap.py index 0efebf7..bc68b53 100755 --- a/sopel_modules/weather/providers/weather/openweathermap.py +++ b/sopel_modules/weather/providers/weather/openweathermap.py @@ -39,7 +39,7 @@ def openweathermap_weather(bot, latitude, longitude, location): 'appid': bot.config.weather.weather_api_key, 'lat': latitude, 'lon': longitude, - 'exclude': 'current,minutely,hourly', + 'exclude': 'minutely,hourly', 'units': 'metric' } try: