From b6df9de8aa3a1e2bb4a2951d3f7949c715ed2c3a Mon Sep 17 00:00:00 2001 From: Craig Lamparter Date: Thu, 21 Dec 2023 10:54:07 -0800 Subject: [PATCH] Update weather.py get back the "starts with w" is the weather command 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 6d68b5c..28ad5ae 100644 --- a/aprsd/plugins/weather.py +++ b/aprsd/plugins/weather.py @@ -26,7 +26,9 @@ class USWeatherPlugin(plugin.APRSDRegexCommandPluginBase, plugin.APRSFIKEYMixin) "weather" - returns weather near the calling callsign """ - command_regex = r"^([w][x]|[w][x]\s|weather)" +# command_regex = r"^([w][x]|[w][x]\s|weather)" + command_regex = r"^[wW]" + command_name = "USWeather" short_description = "Provide USA only weather of GPS Beacon location"