Merge "Adapt fetch_wheels for python3"

This commit is contained in:
Zuul
2019-04-01 12:08:59 +00:00
committed by Gerrit Code Review

View File

@@ -114,7 +114,7 @@ def main():
wheels = f.read()
if wheels.startswith('/'):
with open(wheels, 'r') as f:
with open(wheels, 'rb') as f:
data = f.read()
elif wheels.startswith('http'):
data = get_wheels(wheels)