From 0cc19bf98d64831b85ba203c278c5130e27cb3a2 Mon Sep 17 00:00:00 2001 From: ngn Date: Mon, 20 Jan 2025 06:04:17 +0300 Subject: [PATCH] fix unclosed '(' in settings.rs Signed-off-by: ngn --- src/settings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings.rs b/src/settings.rs index f2768f4..368ef5d 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -43,7 +43,7 @@ impl Settings { if let Ok(path) = env::var("LIBMEDIUM") { s = s.add_source(File::with_name(&path)); } else if Path::new("./config.toml").exists() { - s = s.add_source(File::with_name("./config.toml"); + s = s.add_source(File::with_name("./config.toml")); } else { log::warn!("configuration file not found"); }