diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-10-27 04:47:00 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-10-27 04:47:00 (GMT) |
commit | 37d1d967eed4018ef397dd9d1515683e5b6b55e7 (patch) | |
tree | 8608e791d269905c0b9bd06238ce25b5703e40e4 | |
parent | 4b27d51222be751125e6800453a39360a2dec11d (diff) | |
download | cpython-37d1d967eed4018ef397dd9d1515683e5b6b55e7.zip cpython-37d1d967eed4018ef397dd9d1515683e5b6b55e7.tar.gz cpython-37d1d967eed4018ef397dd9d1515683e5b6b55e7.tar.bz2 |
bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907)
(cherry picked from commit d609b0c24ebdb748cabcc6c062dfc86f9000e6c4)
-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:: |