Merge "repo-review: Fix missing imports" am: 24657efd31

am: 7e0c470acd

Change-Id: I8c12496f5c795e71ac069cc1fe562ee4c74fba84
This commit is contained in:
Bowgo Tsai
2018-06-08 04:05:22 -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