Skip to content

Commit

Permalink
print object id as string
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobMeier committed Apr 30, 2022
1 parent 48b6b83 commit 8041f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tmtccmd/utility/tmtc_printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def print_validity_buffer(self, validity_buffer: bytes, num_vars: int):
@staticmethod
def generic_action_packet_tm_print(packet: Service8FsfwTm, obj_id: ObjectId) -> str:
print_string = (
f"Service 8 data reply from {obj_id} with action ID {packet.action_id} "
f"Service 8 data reply from {obj_id.as_string} with action ID {packet.action_id} "
f"and data size {len(packet.tm_data)}"
)
return print_string
Expand Down

0 comments on commit 8041f3a

Please sign in to comment.