diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-10-26 02:35:22 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-10-26 02:35:22 (GMT) |
commit | bb444772d9121bf742b8f952ad156739ff555ad1 (patch) | |
tree | 9ce492c294cf9374e6ae41e87de65b192e2d31f1 /Doc/library/venv.rst | |
parent | 4afdca056b76143ac97d979b73cefa86fc1d654d (diff) | |
download | cpython-bb444772d9121bf742b8f952ad156739ff555ad1.zip cpython-bb444772d9121bf742b8f952ad156739ff555ad1.tar.gz cpython-bb444772d9121bf742b8f952ad156739ff555ad1.tar.bz2 |
Fix default role usage
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r-- | Doc/library/venv.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 62892d4..0327737 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -24,7 +24,7 @@ independent set of installed Python packages in its site directories. See :pep:`405` for more information about Python virtual environments. .. note:: - The `pyvenv` script has been deprecated as of Python 3.6 in favor of using + The ``pyvenv`` script has been deprecated as of Python 3.6 in favor of using ``python3 -m venv`` to help prevent any potential confusion as to which Python interpreter a virtual environment will be based on. |