From 651cf014b7874b95549ecd9d81cd59ada42862ce Mon Sep 17 00:00:00 2001 From: Craig Lamparter Date: Thu, 21 Dec 2023 11:01:23 -0800 Subject: [PATCH] Update weather.py both weather plugins have new Ww regex --- aprsd/plugins/weather.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aprsd/plugins/weather.py b/aprsd/plugins/weather.py index 28ad5ae..a7da252 100644 --- a/aprsd/plugins/weather.py +++ b/aprsd/plugins/weather.py @@ -191,7 +191,9 @@ class OWMWeatherPlugin(plugin.APRSDRegexCommandPluginBase): """ - command_regex = r"^([w][x]|[w][x]\s|weather)" +# command_regex = r"^([w][x]|[w][x]\s|weather)" + command_regex = r"^[wW]" + command_name = "OpenWeatherMap" short_description = "OpenWeatherMap weather of GPS Beacon location"