Skip to content

Commit

Permalink
add two line breaks when (none, none)
Browse files Browse the repository at this point in the history
  • Loading branch information
o2sh committed Oct 20, 2019
1 parent cdf4f7a commit 405937b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl fmt::Display for Info {
writeln!(f, "{}", logo_line)?,
(None, Some(info_line)) =>
writeln!(f, "{:<width$}{}{:^}", "", center_pad, info_line, width = logo_lines.width())?,
(None, None) => break,
(None, None) => { writeln!(f, "\n")?; break },
}
};

Expand Down

0 comments on commit 405937b

Please sign in to comment.