We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42e0969 commit 78547b3Copy full SHA for 78547b3
github/database/src/tables/check_suite.rs
@@ -95,8 +95,10 @@ impl JobFile {
95
/*
96
* Parse the front matter as TOML:
97
*/
98
- let toml = toml::from_str::<FrontMatter>(&frontmatter)
99
- .map_err(|e| anyhow!("TOML front matter in {path:?}: {e}"))?;
+ let toml =
+ toml::from_str::<FrontMatter>(&frontmatter).map_err(|e| {
100
+ anyhow!("TOML front matter in {path:?}: {}", e.message())
101
+ })?;
102
103
if !toml.enable {
104
0 commit comments