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
commit 8893734e1b
1 changed files with 1 additions and 1 deletions

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)