On 07/21/2014 11:21 PM, Zhou Zheng Sheng wrote:
on 2014/07/22 02:54, Aline Manera wrote:
>> @@ -202,4 +305,7 @@ def _format_dev_node(node):
>
>
>> if __name__ ==
'__main__':
>> + from pprint import pprint
>> _print_host_dev_tree()
>> + print 'Eligible passthrough devices:'
>> + pprint(get_passthrough_dev_infos())
> typo: pprint ?
Do you mean pprint in the
"from pprint import pprint". It's a Python
module to do "pretty print", so it has a weird name ;-).
Ops... I haven't seen the import
The function pprint.pprint() can print Python data structures such
as
dict and list in a human friendly format.