Skip to content

Commit

Permalink
Make sure the table ends in a newline
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon committed Feb 17, 2021
1 parent 0b713ec commit d3fdfe0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 21 deletions.
32 changes: 13 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "python-launcher"
description = "The Python launcher for Unix"
version = "0.14.1"
version = "0.14.2"
authors = ["Brett Cannon <brett@python.org>"]
repository = "https://github.com/brettcannon/python-launcher"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ fn list_executables(executables: &HashMap<ExactVersion, PathBuf>) -> crate::Resu
table.add_row(vec![version.to_string(), path.display().to_string()]);
}

Ok(table.to_string())
Ok(table.to_string() + "\n")
}

// XXX Expose publicly?
Expand Down

0 comments on commit d3fdfe0

Please sign in to comment.