From: Ian Jackson Date: Sat, 27 Mar 2021 11:39:14 +0000 (+0000) Subject: otter cli: list-accounts: Use Display not Debug X-Git-Tag: otter-0.5.0~386 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fda51b6f9f8580abd8ced07e4d4894b286c23760;p=otter.git otter cli: list-accounts: Use Display not Debug Signed-off-by: Ian Jackson --- diff --git a/src/bin/otter.rs b/src/bin/otter.rs index 9be5b1f8..a15fcf88 100644 --- a/src/bin/otter.rs +++ b/src/bin/otter.rs @@ -1333,7 +1333,7 @@ mod list_accounts { x => throw!(anyhow!("unexpected response to ListAccounts: {:?}", &x)), }; for a in accounts { - println!("{:?}", a); + println!("{}", a); } }