From 7e8f409ebc0926246edadaf1dcfaed82a05797d7 Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Wed, 25 Apr 2018 14:26:26 +0200 Subject: [PATCH] Fix XMLRPC URL after Pypi URL update A seemingly-trivial change updated the URL for the XMLRPC Pypi service from https://pypi.python.org/pypi to https://pypi.org/project, while the XMLRPC service lives at https://pypi.org/pypi. This resulted in systematic validation failures. Change-Id: I97218093a9346a7d84f58136764cce53930ddacb --- openstack_releases/pythonutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_releases/pythonutils.py b/openstack_releases/pythonutils.py index 5943e7c7f1..986bfc8332 100644 --- a/openstack_releases/pythonutils.py +++ b/openstack_releases/pythonutils.py @@ -72,7 +72,7 @@ def get_pypi_info(dist_name): def _get_pypi_roles(dist_name): - client = xmlrpc.client.ServerProxy('https://pypi.org/project') + client = xmlrpc.client.ServerProxy('https://pypi.org/pypi') LOG.debug('retrieving roles for {!r}'.format( dist_name)) return client.package_roles(dist_name)