diff --git a/horusdemodlib/__init__.py b/horusdemodlib/__init__.py index 08f934f..d38c350 100755 --- a/horusdemodlib/__init__.py +++ b/horusdemodlib/__init__.py @@ -1 +1 @@ -__version__ = "0.1.18" +__version__ = "0.1.19" diff --git a/horusdemodlib/horusudp.py b/horusdemodlib/horusudp.py index be8fde2..863050e 100644 --- a/horusdemodlib/horusudp.py +++ b/horusdemodlib/horusudp.py @@ -104,7 +104,7 @@ def send_ozimux_message(telemetry, port=55683): _ozisock.sendto(_sentence.encode('ascii'),('127.0.0.1',port)) _ozisock.close() - logging.debug(f"Sent Telemetry to OziMux ({port}): {sentence.strip()}") + logging.debug(f"Sent Telemetry to OziMux ({port}): {_sentence.strip()}") return _sentence except Exception as e: logging.error(f"Failed to send OziMux packet: {str(e)}") diff --git a/pyproject.toml b/pyproject.toml index ac1810a..3e94342 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "horusdemodlib" -version = "0.1.18" +version = "0.1.19" description = "Project Horus HAB Telemetry Demodulators" authors = ["Mark Jessop"] license = "LGPL-2.1-or-later"