Merge "Format expected names correctly for wheel checks"

This commit is contained in:
Zuul
2017-10-30 00:16:57 +00:00
committed by Gerrit Code Review

View File

@@ -13,6 +13,7 @@
# under the License. # under the License.
import requests import requests
import wheel.bdist_wheel
def link_exists(url): def link_exists(url):
@@ -49,7 +50,7 @@ def wheel_py2_url(version, project):
s='https://tarballs.openstack.org', s='https://tarballs.openstack.org',
v=version, v=version,
r=repo_base, r=repo_base,
n=base, n=wheel.bdist_wheel.safer_name(base),
) )
@@ -60,7 +61,7 @@ def wheel_both_url(version, project):
s='https://tarballs.openstack.org', s='https://tarballs.openstack.org',
v=version, v=version,
r=repo_base, r=repo_base,
n=base, n=wheel.bdist_wheel.safer_name(base),
) )