diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-22 01:35:53 +0100 |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-22 01:35:53 +0100 |
| commit | 9f4a8134cd20941bd90e6419948c7bdc83475ad0 (patch) | |
| tree | 89a6b9c3c7dd22ff21425654b75cb48a8103b1aa /config.py | |
| parent | abe7d6ae5236f5d11f76e9f3b8c4665dda6a29f1 (diff) | |
| download | python-setuptools-git-9f4a8134cd20941bd90e6419948c7bdc83475ad0.tar.gz | |
Issue #12226: HTTPS is now used by default when connecting to PyPI.
Diffstat (limited to 'config.py')
| -rw-r--r-- | config.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ password:%s 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 |
