summaryrefslogtreecommitdiff
path: root/Doc/using
diff options
context:
space:
mode:
authorcocoatomo <cocoatomo77@gmail.com>2017-10-27 13:42:11 +0900
committerBerker Peksag <berker.peksag@gmail.com>2017-10-27 07:42:11 +0300
commitd609b0c24ebdb748cabcc6c062dfc86f9000e6c4 (patch)
tree29346651330d0eefd8486f30fe7530ee0ceb0d06 /Doc/using
parent8c83c23fa32405aa9212f028d234f4129d105a23 (diff)
downloadcpython-git-d609b0c24ebdb748cabcc6c062dfc86f9000e6c4.tar.gz
bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907)
Diffstat (limited to 'Doc/using')
-rw-r--r--Doc/using/venv-create.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc
index 53f431b5cf..4292592ba7 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::