From 8784823fc539a267ce7b8846e38b4cbe80eb201e Mon Sep 17 00:00:00 2001 From: Benjamyn Love Date: Wed, 19 Jun 2024 13:28:21 +1000 Subject: [PATCH] Removed debug line --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 479e532..2d1900b 100644 --- a/src/config.rs +++ b/src/config.rs @@ -78,7 +78,7 @@ impl Config { let mut conf_path = default_path.clone(); conf_path.push("/config.ini"); - println!("{:?}", conf_path); + config.write(&conf_path.clone()).unwrap(); Config::from_file(conf_path.into_string().unwrap()) }