commit | 62003247016be2ace7f60f5f02005c52c87b2f61 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Dec 22 01:35:53 2013 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Dec 22 01:35:53 2013 +0100 |
tree | c42054231782f521e72a6c5e2bec8744c30dc252 | |
parent | d105196c728110879b92984feb198b0bd600aaf9 [diff] [blame] |
Issue #12226: HTTPS is now used by default when connecting to PyPI.
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index 1d32714..7dbcc46 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py
@@ -21,7 +21,7 @@ class PyPIRCCommand(Command): """Base command that knows how to handle the .pypirc file """ - DEFAULT_REPOSITORY = 'http://pypi.python.org/pypi' + DEFAULT_REPOSITORY = 'https://pypi.python.org/pypi' DEFAULT_REALM = 'pypi' repository = None realm = None