scripts: fix stm32_mem.py for python 3

Python 3 does not accept a characters string where a bytes string is
needed.
This commit is contained in:
Nicolas Schodet 2022-01-04 09:02:17 +01:00 committed by Piotr Esden-Tempski
parent 8def28dee9
commit ad6c1eb11b
1 changed files with 1 additions and 1 deletions

View File

@ -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()