We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93217de commit 4fd8ee4Copy full SHA for 4fd8ee4
src/errors/execution_error.rs
@@ -30,7 +30,7 @@ impl fmt::Display for ExecutionError {
30
Internal(e) => write!(f, "Internal error: {}", e),
31
Exception(e) => {
32
if e.is_string() {
33
- write!(f, "{:?}", e.to_string().unwrap())
+ write!(f, "{}", e.to_string().unwrap())
34
} else {
35
write!(f, "JS Exception: {:?}", e)
36
}
0 commit comments