Fix clippy suggestion

This commit is contained in:
David Peter 2021-02-16 09:13:22 +01:00
parent f874c8e4db
commit 9ad401be87
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ fn run() -> Result<bool> {
if app.matches.is_present("diagnostic") {
use bugreport::{bugreport, collector::*, format::Markdown};
let pager = bat::config::get_pager_executable(app.matches.value_of("pager"))
.unwrap_or("less".to_owned()); // FIXME: Avoid non-canonical path to "less".
.unwrap_or_else(|| "less".to_owned()); // FIXME: Avoid non-canonical path to "less".
bugreport!()
.info(SoftwareVersion::default())