Merge pull request #18 from jroesch/failing-show

Update show to print an error instead of failing
This commit is contained in:
Alex Crichton 2014-09-18 09:49:47 -04:00
commit 5806d17e78

View file

@ -36,8 +36,9 @@ impl fmt::Show for Value {
Datetime(ref s) => write!(f, "{}", s),
Array(ref a) => {
match a.as_slice().head() {
Some(&Table(..)) => fail!("invalid toml array of tables"),
_ => {}
Some(&Table(..)) =>
try!(write!(f, "invalid toml array of tables")),
_ => {}
}
write!(f, "{}", a)
}
@ -166,4 +167,3 @@ mod tests {
test = \"wut\"\n")
}
}