Merge "Remove python 2 workaround in fetch_wheels.sh"

This commit is contained in:
Zuul 2022-04-27 22:11:59 +00:00 committed by Gerrit Code Review
commit fd750e06a8
1 changed files with 1 additions and 6 deletions

View File

@ -6,12 +6,7 @@ import platform
import re
import ssl
from distutils.util import strtobool
try:
import urllib2
except ImportError:
# python3
from urllib import request as urllib2
from urllib import request as urllib2
DOCKER_REGISTRY='registry.hub.docker.com'