diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-06-19 20:07:17 +0200 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-06-19 20:07:17 +0200 |
| commit | 9002462953e7cba70d5aafee7ed2a87087252f49 (patch) | |
| tree | 88c51f4f6cda71647ec5ed69cb3700d9bb7f4d5f /mumlib/src/config.rs | |
| parent | b2e9021341794ab52edcf4598c8d454515f758c4 (diff) | |
| parent | 9aca7a8c930b179b6ae539234296f529928a3f3a (diff) | |
| download | mum-9002462953e7cba70d5aafee7ed2a87087252f49.tar.gz | |
Merge branch 'lints'
Diffstat (limited to 'mumlib/src/config.rs')
| -rw-r--r-- | mumlib/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mumlib/src/config.rs b/mumlib/src/config.rs index 932e013..c2544e8 100644 --- a/mumlib/src/config.rs +++ b/mumlib/src/config.rs @@ -197,7 +197,7 @@ pub fn read_cfg(path: &Path) -> Result<Config, ConfigError> { } else { error!("Error reading config file: {}", e); } - return Ok(Config::default()); + Ok(Config::default()) } } } |
