Browse Source

removed warning when there is no virtualenv to be loaded

master
Julio Biason 10 years ago
parent
commit
b2753ef564
  1. 2
      auto-virtualenv.sh

2
auto-virtualenv.sh

@ -32,7 +32,7 @@ function _venv_cd {
fi;
\cd $1
venv=$(_upwards_search)
if [ -n $venv ]; then
if [ -n "$venv" ]; then
venv $venv
fi
}

Loading…
Cancel
Save