summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutil/unpack_ftb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/unpack_ftb.py b/util/unpack_ftb.py
index 4829a89d82..62f5161a4a 100755
--- a/util/unpack_ftb.py
+++ b/util/unpack_ftb.py
@@ -81,7 +81,7 @@ def main():
for key, _ in header._fields_:
v = getattr(header, key)
if isinstance(v, ctypes.Array):
- print(key, map(hex, v))
+ print(key, list(map(hex, v)))
else:
print(key, hex(v))