Commit 1d413c0d by Harun Yasar Committed by GitHub

Add a new line after path info written on the screen #2195 (#2196)

parent 9e18519a
......@@ -19,7 +19,7 @@ class EnvInfoCommand(Command):
if not env.is_venv():
return 1
self.write(str(env.path))
self.line(str(env.path))
return
......
......@@ -48,4 +48,4 @@ def test_env_info_displays_path_only(app):
expected = str(Path("/prefix"))
assert expected == tester.io.fetch_output()
assert expected + "\n" == tester.io.fetch_output()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment