Merge "Fix verbose grammar"

This commit is contained in:
Zuul 2017-11-29 06:46:46 +00:00 committed by Gerrit Code Review
commit e12d98aacf

View File

@ -28,12 +28,12 @@ import re
try: try:
# For Python 3.0 and later # For Python 3.0 and later
from urllib.error import HTTPError as HTTPError from urllib.error import HTTPError
import urllib.request as urllib import urllib.request as urllib
except ImportError: except ImportError:
# Fall back to Python 2's urllib2 # Fall back to Python 2's urllib2
import urllib2 as urllib import urllib2 as urllib
from urllib2 import HTTPError as HTTPError from urllib2 import HTTPError
url = 'https://review.openstack.org/projects/' url = 'https://review.openstack.org/projects/'