diff --git a/garfpy/weather.py b/garfpy/weather.py index cd9d0df..3bbe16f 100644 --- a/garfpy/weather.py +++ b/garfpy/weather.py @@ -126,8 +126,8 @@ class WeatherAPI: response.raise_for_status() return await response.json() except aiohttp.ClientError as e: - logger.error(f"Error fetching weather data for '{location}': {e}") - await ctx.send(f"`Error fetching weather data for '{location}': {e}`") + logger.error(f"Error fetching weather data for '{location}'") + await ctx.send(f"`Error fetching weather data for '{location}'`") return None def weather_embed(self, weather_data):