diff options
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 59b2518..593ba96 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -386,7 +386,7 @@ subclass which installs setuptools and pip into a created virtual environment:: :param context: The information for the virtual environment creation request being processed. """ - url = 'https://raw.github.com/pypa/pip/master/contrib/get-pip.py' + url = 'https://bootstrap.pypa.io/get-pip.py' self.install_script(context, 'pip', url) def main(args=None): |