From fda51b6f9f8580abd8ced07e4d4894b286c23760 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 27 Mar 2021 11:39:14 +0000 Subject: [PATCH] otter cli: list-accounts: Use Display not Debug Signed-off-by: Ian Jackson --- src/bin/otter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.30.2