diff options
author | pje <none@none> | 2013-03-01 12:23:20 -0500 |
---|---|---|
committer | pje <none@none> | 2013-03-01 12:23:20 -0500 |
commit | 70c61d89a8c7d548a42f843579ca540b39655ca9 (patch) | |
tree | 38f1fd95280bcf4bd2e79bdad26e8e36894e5580 /setuptools/command/easy_install.py | |
parent | 7b80ff95a04569e39da9ae0fb33f0b90988e22dc (diff) | |
download | external_python_setuptools-70c61d89a8c7d548a42f843579ca540b39655ca9.tar.gz external_python_setuptools-70c61d89a8c7d548a42f843579ca540b39655ca9.tar.bz2 external_python_setuptools-70c61d89a8c7d548a42f843579ca540b39655ca9.zip |
Default index URL to use SSL version of PyPI
--HG--
branch : setuptools-0.6
extra : source : b95868385a32c0103133105788c70850656662c6
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 90f29320..71794865 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -156,7 +156,7 @@ class easy_install(Command): else: self.all_site_dirs.append(normalize_path(d)) if not self.editable: self.check_site_dir() - self.index_url = self.index_url or "http://pypi.python.org/simple" + self.index_url = self.index_url or "https://pypi.python.org/simple" self.shadow_path = self.all_site_dirs[:] for path_item in self.install_dir, normalize_path(self.script_dir): if path_item not in self.shadow_path: |