diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-06-27 10:10:47 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-06-27 10:10:47 (GMT) |
commit | 6803f35acce4490de75a3a234000568904ea87f8 (patch) | |
tree | 8c169419fd0e7bce02964e465b326e607c0ccc32 | |
parent | 9c1e9d453c9d593f25ff34c09410503a61ebe426 (diff) | |
download | cpython-6803f35acce4490de75a3a234000568904ea87f8.zip cpython-6803f35acce4490de75a3a234000568904ea87f8.tar.gz cpython-6803f35acce4490de75a3a234000568904ea87f8.tar.bz2 |
Issue #27393: Fix escaping of C:\ too
-rw-r--r-- | Doc/using/venv-create.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc index c263cf7..7ad3008 100644 --- a/Doc/using/venv-create.inc +++ b/Doc/using/venv-create.inc @@ -89,9 +89,9 @@ venv's binary directory. The invocation of the script is platform-specific: +-------------+-----------------+-----------------------------------------+ | | csh/tcsh | $ source <venv>/bin/activate.csh | +-------------+-----------------+-----------------------------------------+ -| Windows | cmd.exe | C:\> <venv>\\Scripts\\activate.bat | +| Windows | cmd.exe | C:\\> <venv>\\Scripts\\activate.bat | +-------------+-----------------+-----------------------------------------+ -| | PowerShell | PS C:\> <venv>\\Scripts\\Activate.ps1 | +| | PowerShell | PS C:\\> <venv>\\Scripts\\Activate.ps1 | +-------------+-----------------+-----------------------------------------+ You don't specifically *need* to activate an environment; activation just |