Strip whitespace on the right when printing
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
90eaeb642a
commit
0ba19daa57
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ fn show(rt: &Runtime) {
|
||||||
d = id.day(),
|
d = id.day(),
|
||||||
H = id.hour(),
|
H = id.hour(),
|
||||||
M = id.minute(),
|
M = id.minute(),
|
||||||
text = entry.get_content())
|
text = entry.get_content().trim_right())
|
||||||
.to_exit_code()?;
|
.to_exit_code()?;
|
||||||
|
|
||||||
let _ = rt
|
let _ = rt
|
||||||
|
|
Loading…
Reference in a new issue