From a5885427cb326a2fde69f46cf797d36e3e0ff9d5 Mon Sep 17 00:00:00 2001 From: Greg Albrecht Date: Tue, 29 Mar 2022 23:59:52 -0700 Subject: [PATCH] what unit tests? --- aprscot/functions.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"