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:
parent
00acf9bb85
commit
7b827ff149
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue