diff --git a/scripts/rest_client.py b/scripts/rest_client.py index 2232b8421..b6e66cfa4 100755 --- a/scripts/rest_client.py +++ b/scripts/rest_client.py @@ -379,7 +379,7 @@ def main(args): print_commands() return - print(getattr(client, command)(*args["command_arguments"])) + print(json.dumps(getattr(client, command)(*args["command_arguments"]))) if __name__ == "__main__":