summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/args/config_file.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/args/config_file.rs b/cli/args/config_file.rs
index ab6e57cb1..f6dc502be 100644
--- a/cli/args/config_file.rs
+++ b/cli/args/config_file.rs
@@ -567,13 +567,13 @@ impl ConfigFile {
Ok(Some(value)) if value.is_object() => value,
Ok(Some(_)) => {
return Err(anyhow!(
- "config file JSON {:?} should be an object",
+ "config file JSON {} should be an object",
specifier,
))
}
Err(e) => {
return Err(anyhow!(
- "Unable to parse config file JSON {:?} because of {}",
+ "Unable to parse config file JSON {} because of {}",
specifier,
e.to_string()
))