diff options
author | Corentin Chary <corentin.chary@gmail.com> | 2016-10-15 16:31:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-15 16:31:07 +0200 |
commit | 2fedc7450da3b5266772c521ad5112cf792e2d00 (patch) | |
tree | 617047e7249bf60a940626cf2602a235cefdebf9 | |
parent | euscan/handlers/pypi: fix scan_url() (diff) | |
parent | Use HTTPS for pypi's http api (diff) | |
download | euscan-master.tar.gz euscan-master.tar.bz2 euscan-master.zip |
Use HTTPS for pypi's http api
-rw-r--r-- | pym/euscan/handlers/pypi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/euscan/handlers/pypi.py b/pym/euscan/handlers/pypi.py index c07c7eb..f205bfa 100644 --- a/pym/euscan/handlers/pypi.py +++ b/pym/euscan/handlers/pypi.py @@ -36,7 +36,7 @@ def scan_pkg(pkg, options): output.einfo("Using PyPi XMLRPC: " + package) - client = xmlrpclib.ServerProxy('http://pypi.python.org/pypi') + client = xmlrpclib.ServerProxy('https://pypi.python.org/pypi') versions = client.package_releases(package) if not versions: |