Add newline before header

The lastest release of the `toml-rs` crate (2.1) removes leading spaces
before arrays and tables, causing our tests to fail.

This fixes it.
This commit is contained in:
Matthias Beyer 2016-09-09 11:48:10 +02:00
parent 00acf9bb85
commit 7b827ff149
1 changed files with 1 additions and 1 deletions

View File

@ -1440,7 +1440,7 @@ impl Entry {
} }
pub fn to_str(&self) -> String { pub fn to_str(&self) -> String {
format!("---{header}---\n{content}", format!("---\n{header}---\n{content}",
header = ::toml::encode_str(&self.header.header), header = ::toml::encode_str(&self.header.header),
content = self.content) content = self.content)
} }