1
0
Fork 0

Fix an issue that caused wrong name of venv in prompt.

master
Tomek Wójcik 2021-01-12 20:59:23 +01:00
parent a0e67a0bce
commit ff94cb6aed
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ function _ps_git_branch_and_status {
function _ps_virtual_env { function _ps_virtual_env {
if [ "$VIRTUAL_ENV" != "" ];then if [ "$VIRTUAL_ENV" != "" ];then
echo " `basename $VIRTUAL_ENV`" echo " `basename "$VIRTUAL_ENV"`"
fi fi
} }