]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/CLIFormatter.pm
output format options: remove 'plain', add 'json-pretty'
[pve-common.git] / src / PVE / CLIFormatter.pm
index 043ce49d3515a7cdae3e1702b704dbd2cab84c87..927e5a6449dc3773987765c8fb4beaab02bb4cd4 100644 (file)
@@ -379,9 +379,12 @@ sub print_api_result {
     return if $result_schema->{type} eq 'null';
 
     if ($format eq 'json') {
+       # Note: we always use utf8 encoding for json format
+       print to_json($data, {utf8 => 1, allow_nonref => 1, canonical => 1 }) . "\n";
+    } elsif ($format eq 'json-pretty') {
        # Note: we always use utf8 encoding for json format
        print to_json($data, {utf8 => 1, allow_nonref => 1, canonical => 1, pretty => 1 });
-    } elsif ($format eq 'text' || $format eq 'plain') {
+    } elsif ($format eq 'text') {
        my $encoding = $options->{encoding} // 'UTF-8';
        my $type = $result_schema->{type};
        if ($type eq 'object') {