From ad6c1eb11bd31899713dc661c5fa5b33db36d279 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Tue, 4 Jan 2022 09:02:17 +0100 Subject: [PATCH] scripts: fix stm32_mem.py for python 3 Python 3 does not accept a characters string where a bytes string is needed. --- scripts/stm32_mem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/stm32_mem.py b/scripts/stm32_mem.py index 51a8537..1867488 100755 --- a/scripts/stm32_mem.py +++ b/scripts/stm32_mem.py @@ -72,7 +72,7 @@ def stm32_read(dev): return data def stm32_manifest(dev): - dev.download(0, "") + dev.download(0, b"") while True: try: status = dev.get_status()