From 4f5559c50fce2f044359df89fff1bcbba1807291 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 25 Aug 2022 09:55:34 +0200 Subject: [PATCH] small fix --- pus_tc/devs/pdu2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pus_tc/devs/pdu2.py b/pus_tc/devs/pdu2.py index 33a3792..367b791 100644 --- a/pus_tc/devs/pdu2.py +++ b/pus_tc/devs/pdu2.py @@ -58,10 +58,10 @@ def pack_pdu2_commands(object_id: ObjectIdU32, q: DefaultPusQueueHelper, op_code ) ) if op_code in GomspaceOpCodes.SET_PARAM: - q.add_log_cmd(f"PDU1: {GsInfo.SET_PARAMETER}") + q.add_log_cmd(f"PDU2: {GsInfo.SET_PARAMETER}") prompt_and_pack_set_param_command(q, object_id) if op_code in GomspaceOpCodes.GET_PARAM: - q.add_log_cmd(f"PDU1: {GsInfo.GET_PARAMETER}") + q.add_log_cmd(f"PDU2: {GsInfo.GET_PARAMETER}") prompt_and_pack_get_param_command(q, object_id) if PDU2TestProcedure.all or PDU2TestProcedure.reboot: q.add_log_cmd("PDU2: Reboot")