Fix git commit popup message bracket (#16279)
This commit is contained in:
parent
98e09f22c2
commit
f633b125b9
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ pub fn get_messages(working_directory: &Path, shas: &[Oid]) -> Result<HashMap<Oi
|
||||||
String::from_utf8_lossy(&output.stdout)
|
String::from_utf8_lossy(&output.stdout)
|
||||||
.trim()
|
.trim()
|
||||||
.split_terminator(MARKER)
|
.split_terminator(MARKER)
|
||||||
.map(|str| String::from(str.trim())),
|
.map(|str| str.trim().replace("<", "<").replace(">", ">")),
|
||||||
)
|
)
|
||||||
.collect::<HashMap<Oid, String>>())
|
.collect::<HashMap<Oid, String>>())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue