From 561f12c79f86262fd5d6ce0282176f779acd5669 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Fri, 6 Feb 2015 23:17:09 -0500 Subject: [PATCH] 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 --- doc/source/dev/dev-quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst index 5e5fe88bff..349eb87244 100644 --- a/doc/source/dev/dev-quickstart.rst +++ b/doc/source/dev/dev-quickstart.rst @@ -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::