Skip to content

Commit 335eff5

Browse files
committed
fix type error, pager.bin is already a string
1 parent d04b960 commit 335eff5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/output.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl OutputType {
107107
Err(_) => {
108108
crate::bat_warning!(
109109
"Pager '{}' not found, outputting to stdout instead",
110-
pager.bin.to_string_lossy()
110+
pager.bin
111111
);
112112
return Ok(OutputType::stdout());
113113
}

0 commit comments

Comments
 (0)