From d609b0c24ebdb748cabcc6c062dfc86f9000e6c4 Mon Sep 17 00:00:00 2001 From: cocoatomo Date: Fri, 27 Oct 2017 13:42:11 +0900 Subject: [PATCH] bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907) --- Doc/using/venv-create.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 `:: - 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::