remove debug print

This commit is contained in:
Max Bradbury 2021-04-20 10:31:50 +01:00
parent 2b2ac66708
commit 9f626b8265
1 changed files with 0 additions and 2 deletions

View File

@ -38,8 +38,6 @@ fn save_config(config: Config) {
let mut config_file = File::create(config_path)
.expect("Couldn't create config file");
print!("{}", toml);
config_file.write(&toml.into_bytes())
.expect("Couldn't write config file");
}