diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-01-19 14:49:17 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-01-19 14:49:17 +0100 |
commit | 23ade5792e57fd380aa72de9039148a7f946f3d6 (patch) | |
tree | 9e00003002b5c0f9d1b0c17d2b617ad3c5285134 /uecpparse | |
parent | 2234137c48974c11cd6053ec7e1af8b0f96f5737 (diff) | |
download | mmbtools-aux-23ade5792e57fd380aa72de9039148a7f946f3d6.tar.gz mmbtools-aux-23ade5792e57fd380aa72de9039148a7f946f3d6.tar.bz2 mmbtools-aux-23ade5792e57fd380aa72de9039148a7f946f3d6.zip |
Diffstat (limited to 'uecpparse')
-rwxr-xr-x | uecpparse/uecp_parse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uecpparse/uecp_parse.py b/uecpparse/uecp_parse.py index b0d8822..fad580e 100755 --- a/uecpparse/uecp_parse.py +++ b/uecpparse/uecp_parse.py @@ -199,7 +199,7 @@ while True: if not data: break - line_bytes = [int(i) for i in data] + line_bytes = list(data) line_bytes.reverse() |