diff --git a/aprscot/functions.py b/aprscot/functions.py index 550b425..7cf67c9 100644 --- a/aprscot/functions.py +++ b/aprscot/functions.py @@ -73,7 +73,7 @@ def aprs_to_cot_xml(aprs_frame: dict, config: dict) -> ET.Element: # NOQA pylin contact = ET.Element("contact") contact.set("callsign", f"{callsign} (APRS)") - track = E.Element("track") + track = ET.Element("track") track.set("course", "9999999.0") detail = ET.Element("detail") diff --git a/setup.py b/setup.py index 162979d..a566cee 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ import setuptools __title__ = "aprscot" -__version__ = "5.0.4" +__version__ = "5.0.5" __author__ = "Greg Albrecht W2GMD " __copyright__ = "Copyright 2022 Greg Albrecht" __license__ = "Apache License, Version 2.0"