summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-12-22 01:35:53 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2013-12-22 01:35:53 +0100
commit9f4a8134cd20941bd90e6419948c7bdc83475ad0 (patch)
tree89a6b9c3c7dd22ff21425654b75cb48a8103b1aa /config.py
parentabe7d6ae5236f5d11f76e9f3b8c4665dda6a29f1 (diff)
downloadpython-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.py b/config.py
index 1fd53346..a97635f2 100644
--- a/config.py
+++ b/config.py
@@ -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