diff --git a/eive_tmtc/pus_tc/tc_handler.py b/eive_tmtc/pus_tc/tc_handler.py index ae61918..d3e71da 100644 --- a/eive_tmtc/pus_tc/tc_handler.py +++ b/eive_tmtc/pus_tc/tc_handler.py @@ -118,7 +118,6 @@ class TcHandler(TcHandlerBase): CFDP_REMOTE_ENTITY_ID, CFDP_LOCAL_ENTITY_ID, ) - print(put_req) else: put_req = cfdp_put_req_params_to_procedure(put_req_cfg_wrapper.cfg) _LOGGER.info( diff --git a/tmtcc.py b/tmtcc.py index 35d03fb..bb9b7ff 100755 --- a/tmtcc.py +++ b/tmtcc.py @@ -8,6 +8,7 @@ from pathlib import Path from eive_tmtc.cfdp.fault_handler import EiveCfdpFaultHandler from eive_tmtc.cfdp.tm import CfdpInCcsdsWrapper from eive_tmtc.cfdp.user import EiveCfdpUser +from spacepackets.version import get_version as get_spacepackets_version from spacepackets.cfdp import ( ChecksumType, TransmissionMode, @@ -232,7 +233,7 @@ def setup_backend( def main(): # noqa C901: Complexity okay here. print(f"-- eive tmtc v{__version__} --") - print(f"-- spacepackets v{spacepackets.__version__} --") + print(f"-- spacepackets v{get_spacepackets_version()} --") add_colorlog_console_logger(_LOGGER) # TODO: -V CLI argument to enable this? _LOGGER.setLevel(_LOG_LEVEL)