From f1f8aed8c477f6298fc1a7c471a3cee06844d306 Mon Sep 17 00:00:00 2001 From: Hemna Date: Thu, 19 Aug 2021 19:07:45 -0400 Subject: [PATCH] Fixed LOG.debug issue in weather plugin --- aprsd/plugins/weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd/plugins/weather.py b/aprsd/plugins/weather.py index 9739708..bdedd08 100644 --- a/aprsd/plugins/weather.py +++ b/aprsd/plugins/weather.py @@ -350,7 +350,7 @@ class AVWXWeatherPlugin(plugin.APRSDMessagePluginBase): try: utils.check_config_option(self.config, ["services", "avwx", "base_url"]) except Exception as ex: - LOG.debut("Didn't find avwx:base_url {}".format(ex)) + LOG.debug("Didn't find avwx:base_url {}".format(ex)) base_url = "https://avwx.rest" else: base_url = self.config["services"]["avwx"]["base_url"]