Skip to content
Snippets Groups Projects
Commit 08855531 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix dump-properties for non-device-fission devices.

parent 6dd08b25
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,9 @@ def print_info(obj, info_cls):
except:
info_value = "<error>"
if info_cls == cl.device_info and info_name == "PARTITION_TYPES_EXT":
if (info_cls == cl.device_info and info_name == "PARTITION_TYPES_EXT"
and isinstance(info_value, list)):
print info_value
print("%s: %s" % (info_name, [
cl.device_partition_property_ext.to_string(v) for v in info_value]))
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment