don't add space to history

This commit is contained in:
rabite 2019-04-02 22:58:23 +02:00
parent 04285257ca
commit 1a819f2f28
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ impl History {
let hpath = crate::paths::history_path()?;
let history = self.history.iter().map(|(htype, hlines)| {
hlines.iter().map(|hline| format!("{}: {}\n", htype, hline))
hlines.iter().map(|hline| format!("{}:{}\n", htype, hline))
.collect::<String>()
}).collect::<String>();