We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50fef48 commit 65f7311Copy full SHA for 65f7311
qubesadmin/tools/qvm_device.py
@@ -334,9 +334,10 @@ def info_device(args):
334
"""
335
if args.device:
336
device = args.device
337
- print(f'{device.device_id}:', device.description)
338
- if device.data:
339
- print("additional data:", device.data)
+ print(device.description)
+ print(f'device ID: {device.device_id}')
+ for key, value in device.data.items():
340
+ print(key, ":", value)
341
342
343
def init_list_parser(sub_parsers):
0 commit comments