8000 [3.9] bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383) by miss-islington · Pull Request #20384 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.9] bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383) #20384

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383)
(cherry picked from commit ef16958)

Co-authored-by: Miro Hrončok <miro@hroncok.cz>
  • Loading branch information
hroncok authored and miss-islington committed May 25, 2020
commit cd870925c7359bfb219d9c6bec7f5d967e177c83
2 changes: 1 addition & 1 deletion Doc/using/venv-create.inc
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,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
Expand Down
2 c 7DD5 hanges: 1 addition & 1 deletion Lib/venv/scripts/common/Activate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
0