From e65e24d673bea3b78909daaf4874f37fcb4d6b5f Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Tue, 21 Jul 2026 17:31:24 -0700 Subject: [PATCH] build_remote.py: slightly nicer formatting for binary data --- tools/snap/build_remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/snap/build_remote.py b/tools/snap/build_remote.py index 706879b52..ba6f562eb 100755 --- a/tools/snap/build_remote.py +++ b/tools/snap/build_remote.py @@ -153,7 +153,7 @@ def _build_snap( try: first_block_str = first_block.decode() except UnicodeDecodeError: - first_block_str = first_block.hex() + first_block_str = first_block.hex(sep=',') print(f'The {target} {arch} snap file began with invalid data: {first_block_str}') dump_output = bool(failed_archs)