1
0
mirror of https://github.com/sharkdp/bat synced 2026-07-27 17:41:42 +00:00

fix type error, pager.bin is already a string

This commit is contained in:
Ian Maloney
2026-02-19 21:44:47 +00:00
parent d04b960c05
commit 335eff51f3
+1 -1
View File
@@ -107,7 +107,7 @@ impl OutputType {
Err(_) => {
crate::bat_warning!(
"Pager '{}' not found, outputting to stdout instead",
pager.bin.to_string_lossy()
pager.bin
);
return Ok(OutputType::stdout());
}