From 5e6ebf87ca6ff378715226334d20f962fd84955f Mon Sep 17 00:00:00 2001 From: Reuben Miller Date: Mon, 31 Jul 2023 14:40:49 +0200 Subject: [PATCH] fix(config): removing escaped newline char shown in console message Signed-off-by: Reuben Miller --- crates/common/tedge_config_macros/src/option.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/common/tedge_config_macros/src/option.rs b/crates/common/tedge_config_macros/src/option.rs index 70004e78e3d..4652722081b 100644 --- a/crates/common/tedge_config_macros/src/option.rs +++ b/crates/common/tedge_config_macros/src/option.rs @@ -35,7 +35,7 @@ impl From> for Option { #[derive(thiserror::Error, Debug)] #[error( - r#"A value for '{key}' is missing.\n\ + r#"A value for '{key}' is missing. A value can be set with `tedge config set {key} `"# )] /// A descriptive error for missing configurations