Change command for creating a virtualenv

echo "Done" seems to give people the wrong impression that
something went wrong. Just run python -V to print the python
version instead.

Closes-Bug: #1412223
Change-Id: I72d47fd2f1bf99ea13047598ead5df0fe8fa42ff
This commit is contained in:
Davanum Srinivas 2015-02-06 23:17:09 -05:00
parent c96abe002e
commit 561f12c79f
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ Magnum source code should be pulled directly from git::
Set up a local environment for development and testing should be done with tox::
# create a virtualenv for development
tox -evenv -- echo 'done'
tox -evenv -- python -V
Activate the virtual environment whenever you want to work in it.
All further commands in this section should be run with the venv active::