From f3e81de2a78926df4dfc26f3d21e69dd47cbf9a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Tue, 15 Nov 2022 00:13:44 +0000 Subject: [PATCH] feat: small buffer tune --- res/boot/boot_dump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/boot/boot_dump.py b/res/boot/boot_dump.py index ce78bc01..729cd154 100644 --- a/res/boot/boot_dump.py +++ b/res/boot/boot_dump.py @@ -11,7 +11,7 @@ def print_buffer(filename): buffer = [str(byte) for byte in data] buffer_s = ", ".join(buffer) - print("[" + buffer_s + "]") + print("[%s]" % buffer_s) if __name__ == "__main__": if len(sys.argv) < 2: -- GitLab