summaryrefslogtreecommitdiffstats
path: root/src/utils/bat/output.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/bat/output.rs')
-rw-r--r--src/utils/bat/output.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/utils/bat/output.rs b/src/utils/bat/output.rs
index de02b18e..ca062e1b 100644
--- a/src/utils/bat/output.rs
+++ b/src/utils/bat/output.rs
@@ -74,8 +74,7 @@ impl OutputType {
.or(pager_from_env)
.unwrap_or_else(|| String::from("less"));
- let pagerflags =
- shell_words::split(&pager).chain_err(|| "Could not parse pager command.")?;
+ let pagerflags = shell_words::split(&pager).context("Could not parse pager command.")?;
Ok(match pagerflags.split_first() {
Some((pager_name, args)) => {
@@ -117,7 +116,7 @@ impl OutputType {
OutputType::Pager(ref mut command) => command
.stdin
.as_mut()
- .chain_err(|| "Could not open stdin for pager")?,
+ .context("Could not open stdin for pager")?,
OutputType::Stdout(ref mut handle) => handle,
})
}