Merge "repo-review: Fix missing imports"

am: 24657efd31

Change-Id: I7b6b44e32e90182d18f9dd3fbab77be143052aaf
This commit is contained in:
Bowgo Tsai
2018-06-08 03:59:48 -07:00
committed by android-build-merger
2 changed files with 9 additions and 2 deletions

View File

@@ -25,9 +25,11 @@ import os
import sys
try:
from urllib.request import HTTPBasicAuthHandler, build_opener # PY3
from urllib.request import (
HTTPBasicAuthHandler, Request, build_opener) # PY3
except ImportError:
from urllib2 import HTTPBasicAuthHandler, build_opener # PY2
from urllib2 import (
HTTPBasicAuthHandler, Request, build_opener) # PY2
try:
from urllib.parse import urlencode, urlparse # PY3

View File

@@ -22,6 +22,11 @@ from __future__ import print_function
from gerrit import create_url_opener_from_args, query_change_lists, set_review
try:
from urllib.error import HTTPError # PY3
except ImportError:
from urllib2 import HTTPError # PY2
import argparse
import json
import os