We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34cb8e5 commit 58eae98Copy full SHA for 58eae98
docs/en/history.rst
@@ -5,6 +5,8 @@ Release History
5
dev
6
7
- Switch to stevedore_ for plugin management
8
+ - mkvirtualenv_help should use ``$VIRTUALENVWRAPPER_PYTHON`` instead
9
+ of calling ``virtualenv`` directly (:bbissue:`148`).
10
11
.. _stevedore: http://pypi.python.org/pypi/stevedore
12
virtualenvwrapper.sh
@@ -360,7 +360,7 @@ function mkvirtualenv_help {
360
echo;
361
echo 'virtualenv help:';
362
363
- virtualenv $@;
+ "$VIRTUALENVWRAPPER_VIRTUALENV" $@;
364
}
365
366
# Create a new environment, in the WORKON_HOME.
0 commit comments