src/bin/proxmox-backup-manager.rs: only show pending changes with "text" format

This commit is contained in:
Dietmar Maurer 2020-04-24 10:16:57 +02:00
parent 2eefd9aee1
commit 3181f9b625
1 changed files with 3 additions and 1 deletions

View File

@ -256,7 +256,9 @@ fn list_network_devices(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result
if let Some(changes) = rpcenv.get_result_attrib("changes") {
if let Some(diff) = changes.as_str() {
eprintln!("pending changes:\n{}\n", diff);
if output_format == "text" {
eprintln!("pending changes:\n{}\n", diff);
}
}
}