From a88838136de02c9254aad19d6f84718298ca2f7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erkki=20Sepp=C3=A4l=C3=A4?= Date: Tue, 17 Jan 2023 22:56:01 +0200 Subject: [PATCH] setup: removed extra \n from an error --- src/setup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup.rs b/src/setup.rs index 3357cd4..269547a 100644 --- a/src/setup.rs +++ b/src/setup.rs @@ -345,7 +345,7 @@ pub async fn setup_mode( ) -> Result<(), Error> { if std::path::Path::new(config_file).exists() { return Err(Error::SetupError(format!( - "Config file {config_file} already exists, not running setup.\n" + "Config file {config_file} already exists, not running setup." ))); }