From 8395782a2ee465d26afb6fd21912ba1cac5d0382 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Tue, 14 May 2019 17:55:18 -0700 Subject: [PATCH] Use Display instead of Debug for rbx_xml errors now --- server/src/rbx_snapshot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/rbx_snapshot.rs b/server/src/rbx_snapshot.rs index 9cf875ce..8e9ba51d 100644 --- a/server/src/rbx_snapshot.rs +++ b/server/src/rbx_snapshot.rs @@ -153,7 +153,7 @@ impl fmt::Display for SnapshotError { write!(output, "Malformed .model.json model: {} in path {}", inner, path.display()) }, SnapshotError::XmlModelDecodeError { inner, path } => { - write!(output, "Malformed rbxmx model: {:?} in path {}", inner, path.display()) + write!(output, "Malformed rbxmx model: {} in path {}", inner, path.display()) }, SnapshotError::BinaryModelDecodeError { inner, path } => { write!(output, "Malformed rbxm model: {:?} in path {}", inner, path.display())