From 37d1d967eed4018ef397dd9d1515683e5b6b55e7 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 26 Oct 2017 21:47:00 -0700 Subject: [PATCH] bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907) (cherry picked from commit d609b0c24ebdb748cabcc6c062dfc86f9000e6c4) --- 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 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 `:: - 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:: -- 2.40.0