From b765ee50d31b1b629b7572c231d2cf2840a4146f Mon Sep 17 00:00:00 2001 From: "Jose M. Guisado" Date: Tue, 17 May 2022 11:24:49 +0200 Subject: utils: add print_json Adds a pretty printing function for JSON data. Replaces print for print_json in corresponding cli objects. Follows commit 828d6c0ce7d4a6b4bcd95e97155460fd59856bdd ("list scopes: pretty print scope tree") --- cli/objects/disks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cli/objects/disks.py') diff --git a/cli/objects/disks.py b/cli/objects/disks.py index 064a43e..77955fa 100644 --- a/cli/objects/disks.py +++ b/cli/objects/disks.py @@ -8,6 +8,8 @@ import argparse import re +from cli.utils import print_json + class OgDisk(): @staticmethod @@ -21,7 +23,7 @@ class OgDisk(): payload = {'client': [parsed_args.client_ip]} r = rest.get('/client/setup', payload=payload) - print(r.text) + print_json(r.text) @staticmethod def setup_disk(rest, args): -- cgit v1.2.3-18-g5258