diff options
author | cocoatomo <cocoatomo77@gmail.com> | 2017-10-27 04:42:11 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-10-27 04:42:11 (GMT) |
commit | d609b0c24ebdb748cabcc6c062dfc86f9000e6c4 (patch) | |
tree | 29346651330d0eefd8486f30fe7530ee0ceb0d06 /Doc | |
parent | 8c83c23fa32405aa9212f028d234f4129d105a23 (diff) | |
download | cpython-d609b0c24ebdb748cabcc6c062dfc86f9000e6c4.zip cpython-d609b0c24ebdb748cabcc6c062dfc86f9000e6c4.tar.gz cpython-d609b0c24ebdb748cabcc6c062dfc86f9000e6c4.tar.bz2 |
bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/using/venv-create.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc index 53f431b..4292592 100644 --- a/Doc/using/venv-create.inc +++ b/Doc/using/venv-create.inc @@ -33,7 +33,7 @@ On Windows, invoke the ``venv`` command as follows:: Alternatively, if you configured the ``PATH`` and ``PATHEXT`` variables for your :ref:`Python installation <using-on-windows>`:: - c:\>python -m venv myenv c:\path\to\myenv + c:\>python -m venv c:\path\to\myenv The command, if run with ``-h``, will show the available options:: |