From 00904132df4a47018f82835ce20315f4c1043c86 Mon Sep 17 00:00:00 2001 From: Jonathan Diamond Date: Thu, 14 Sep 2023 11:15:13 -0700 Subject: [PATCH] Fix print for unknown messages. --- python/bin/p1_print | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/bin/p1_print b/python/bin/p1_print index 6310bbbe..2e5eb574 100755 --- a/python/bin/p1_print +++ b/python/bin/p1_print @@ -39,7 +39,7 @@ def print_message(header, contents, offset_bytes, format='pretty'): else: parts = str(contents).split('\n') else: - parts = [f'{header.get_type().to_string(include_value=True)} (unsupported)'] + parts = [f'{header.get_type_string()} (unsupported)'] if format in ('pretty', 'oneline-detailed'): details = 'sequence=%d, size=%d B, offset=%d B (0x%x)' %\