Merge "repo-review: Fix missing imports"

This commit is contained in:
Treehugger Robot
2018-06-08 10:52:26 +00:00
committed by Gerrit Code Review
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