From cff54a61abbf693153de55a81dd7660a7f117fd7 Mon Sep 17 00:00:00 2001 From: etorreborre Date: Mon, 24 Jun 2024 11:48:18 +0200 Subject: [PATCH] fix(rust): fix the display of ockam vault show --- NOTICE.md | 2 -- implementations/rust/ockam/ockam_command/src/vault/util.rs | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/NOTICE.md b/NOTICE.md index 352eed3c3f6..6663771da71 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -637,5 +637,3 @@ This file contains attributions for any 3rd-party open source code used in this | zeroize_derive | Apache-2.0, MIT | https://crates.io/crates/zeroize_derive | | zstd | MIT | https://crates.io/crates/zstd | | zstd-safe | MIT, Apache-2.0 | https://crates.io/crates/zstd-safe | - - diff --git a/implementations/rust/ockam/ockam_command/src/vault/util.rs b/implementations/rust/ockam/ockam_command/src/vault/util.rs index e9cc64d5da5..7a23f0d53a1 100644 --- a/implementations/rust/ockam/ockam_command/src/vault/util.rs +++ b/implementations/rust/ockam/ockam_command/src/vault/util.rs @@ -28,7 +28,7 @@ impl Output for VaultOutput { Ok(formatdoc!( r#" Vault: - {vault} + {vault} "#, vault = indent(" ", self.as_list_item()?) ))