[Python-checkins] bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907)

Berker Peksag webhook-mailer at python.org
Fri Oct 27 00:42:19 EDT 2017


https://github.com/python/cpython/commit/d609b0c24ebdb748cabcc6c062dfc86f9000e6c4
commit: d609b0c24ebdb748cabcc6c062dfc86f9000e6c4
branch: master
author: cocoatomo <cocoatomo77 at gmail.com>
committer: Berker Peksag <berker.peksag at gmail.com>
date: 2017-10-27T07:42:11+03:00
summary:

bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907)

files:
M Doc/using/venv-create.inc

diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc
index 53f431b5cfd..4292592ba7a 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::
 



More information about the Python-checkins mailing list