Skip to content

Commit db299ca

Browse files
authored
Fix confusing activate/deactivate error messages (#495)
1 parent c6bb069 commit db299ca

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

bin/pyenv-activate

+2-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,8 @@ fi
2222

2323
{ printf "\x1B[31;1m"
2424
echo
25-
echo "Failed to activate virtualenv."
26-
echo
27-
echo "Perhaps pyenv-virtualenv has not been loaded into your shell properly."
28-
echo "Please restart current shell and try again."
25+
echo "\`pyenv activate' requires Pyenv and Pyenv-Virtualenv to be loaded into your shell."
26+
echo "Check your shell configuration and Pyenv and Pyenv-Virtualenv installation instructions."
2927
echo
3028
printf "\x1B[0m"
3129
} 1>&2

bin/pyenv-deactivate

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,8 @@ set -e
1111

1212
{ printf "\x1B[31;1m"
1313
echo
14-
echo "Failed to deactivate virtualenv."
15-
echo
16-
echo "Perhaps pyenv-virtualenv has not been loaded into your shell properly."
17-
echo "Please restart current shell and try again."
14+
echo "\`pyenv deactivate' requires Pyenv and Pyenv-Virtualenv to be loaded into your shell."
15+
echo "Check your shell configuration and Pyenv and Pyenv-Virtualenv installation instructions."
1816
echo
1917
printf "\x1B[0m"
2018
} 1>&2

0 commit comments

Comments
 (0)