Navigation Menu

Skip to content

Commit

Permalink
Removing setecho(False) for all shells (python-poetry#1673)
Browse files Browse the repository at this point in the history
* Removing setecho(False) for all shells

* Only setecho(False) for zsh
  • Loading branch information
jmaroeder authored and shenek committed Dec 31, 2019
1 parent bb4bcb4 commit fc55f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/utils/shell.py
Expand Up @@ -58,7 +58,7 @@ def activate(self, env): # type: (VirtualEnv) -> None
self._path, ["-i"], dimensions=(terminal.height, terminal.width)
)

if not self._name == "bash":
if self._name == "zsh":
c.setecho(False)

activate_script = self._get_activate_script()
Expand Down

0 comments on commit fc55f2e

Please sign in to comment.