Slightly change error message formulation

This commit is contained in:
Raphaël Thériault 2019-10-27 18:48:28 -04:00 committed by GitHub
parent 49c1ad8232
commit ab3d325bb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ pub fn init() -> Config {
println!("Generating config file at {}", config_path.display());
let config = Config::default();
config.write_file().unwrap_or_else(|e| {
eprintln!("Couldn't write the config file: {}", e);
eprintln!("Can't write config file: {}", e);
process::exit(1);
});
return config;