Skip to content

Commit

Permalink
q-dev: prettier device data printing
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrbartman committed Oct 21, 2024
1 parent c77ed55 commit 8faaad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesadmin/tools/qvm_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def info_device(args):
print(device.description)
print(f"device ID: {device.device_id}")
for key, value in device.data.items():
print(key, ":", value)
print(key.replace("_", " ") + ":", value)


def init_list_parser(sub_parsers):
Expand Down

0 comments on commit 8faaad0

Please sign in to comment.