[Python-checkins] bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383)

Miss Islington (bot) webhook-mailer at python.org
Mon May 25 11:11:47 EDT 2020


https://github.com/python/cpython/commit/331b2dfadb2a5dd990145c043d006166e568af7b
commit: 331b2dfadb2a5dd990145c043d006166e568af7b
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-25T08:11:39-07:00
summary:

bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383)

(cherry picked from commit ef16958d17e83723334a51428f410f726d6492a7)

Co-authored-by: Miro Hrončok <miro at hroncok.cz>

files:
M Doc/using/venv-create.inc
M Lib/venv/scripts/common/Activate.ps1

diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc
index 99b2a19a18d06..c81aaf15d885a 100644
--- a/Doc/using/venv-create.inc
+++ b/Doc/using/venv-create.inc
@@ -86,7 +86,7 @@ The command, if run with ``-h``, will show the available options::
    PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
 
    See `About Execution Policies
-   <ttps:/go.microsoft.com/fwlink/?LinkID=135170>`_
+   <https://go.microsoft.com/fwlink/?LinkID=135170>`_
    for more information.
 
 The created ``pyvenv.cfg`` file also includes the
diff --git a/Lib/venv/scripts/common/Activate.ps1 b/Lib/venv/scripts/common/Activate.ps1
index b8245b1bbe5c8..a3bc6fb1f05bf 100644
--- a/Lib/venv/scripts/common/Activate.ps1
+++ b/Lib/venv/scripts/common/Activate.ps1
@@ -45,7 +45,7 @@ command:
 PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
 
 For more information on Execution Policies: 
-ttps:/go.microsoft.com/fwlink/?LinkID=135170
+https://go.microsoft.com/fwlink/?LinkID=135170
 
 #>
 Param(



More information about the Python-checkins mailing list