build_remote.py: slightly nicer formatting for binary data

This commit is contained in:
Will Greenberg
2026-07-21 17:31:24 -07:00
parent 9dd1f5eb4c
commit e65e24d673
+1 -1
View File
@@ -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)