Ran rust fmt

This commit is contained in:
Ricky 2018-10-25 17:51:50 +01:00 committed by David Peter
parent 20ba84d1fa
commit 1dd57e6d7e
1 changed files with 2 additions and 3 deletions

View File

@ -14,9 +14,8 @@ pub fn config_file() -> PathBuf {
let env_path_buf = PathBuf::from(env_path); let env_path_buf = PathBuf::from(env_path);
if env_path_buf.is_file() { if env_path_buf.is_file() {
return env_path_buf; return env_path_buf;
} } else {
else { return PROJECT_DIRS.config_dir().join("config");
return PROJECT_DIRS.config_dir().join("config");
} }
} }
Err(_) => PROJECT_DIRS.config_dir().join("config"), Err(_) => PROJECT_DIRS.config_dir().join("config"),