Use googleapiclient import instead of apiclient

apiclient alias will be removed upstream in the future according
to the changelog.

Change-Id: I896a52c5e17632ab7a65cf0f9b894cccf0f5687b
Closes-Bug: #1556020
This commit is contained in:
Thomas Bechtold 2016-03-11 11:20:59 +01:00
parent 6b86441015
commit c83f352c81
2 changed files with 4 additions and 4 deletions

View File

@ -30,9 +30,9 @@ import base64
import hashlib
import httplib2
from apiclient import discovery
from apiclient import errors
from apiclient import http
from googleapiclient import discovery
from googleapiclient import errors
from googleapiclient import http
from oauth2client import client
from oslo_config import cfg
from oslo_log import log as logging

View File

@ -18,7 +18,7 @@ import json
import os
import zlib
from apiclient import errors
from googleapiclient import errors
from oauth2client import client
from oslo_utils import units
import six