diff --git a/mercurial-types/src/path.rs b/mercurial-types/src/path.rs index 07ee9994ab..8bd72c980a 100644 --- a/mercurial-types/src/path.rs +++ b/mercurial-types/src/path.rs @@ -650,7 +650,7 @@ impl fmt::Debug for MPathElement { impl fmt::Debug for MPath { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { - write!(fmt, "MPath({:?})", self.to_vec()) + write!(fmt, "MPath({:?} \"{}\")", self.to_vec(), self) } }