diff options
author | Daniel Andersson <daniel.4ndersson@gmail.com> | 2019-12-14 10:37:58 (GMT) |
---|---|---|
committer | Pablo Galindo <Pablogsal@gmail.com> | 2019-12-14 10:37:58 (GMT) |
commit | 40c01c33466b39f942b7f533c0800f258be1eb18 (patch) | |
tree | 99c7bc0e305dadc5116e6ddff38f8d2ccf0d16a2 | |
parent | 5936a4ce914d42af97b9238e5090dedc8d5b0bd2 (diff) | |
download | cpython-40c01c33466b39f942b7f533c0800f258be1eb18.zip cpython-40c01c33466b39f942b7f533c0800f258be1eb18.tar.gz cpython-40c01c33466b39f942b7f533c0800f258be1eb18.tar.bz2 |
Fix typo in site module (GH-17597)
-rw-r--r-- | Lib/site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py index a065ab0..2c71798 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -590,7 +590,7 @@ def _script(): Exit codes with --user-base or --user-site: 0 - user site directory is enabled 1 - user site directory is disabled by user - 2 - uses site directory is disabled by super user + 2 - user site directory is disabled by super user or for security reasons >2 - unknown error """ |