From 48938b703e2da341c5256918cdf8c6fa27bb1a34 Mon Sep 17 00:00:00 2001 From: Aarush Gupta <51494575+ag2718@users.noreply.github.com> Date: Thu, 26 Dec 2019 18:40:38 -0500 Subject: [PATCH] Change apiclient to googleapiclient A new update to the Google Drive API requires all appearances of "apiclient" to be renamed to "googleapiclient." --- pydrive/files.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pydrive/files.py b/pydrive/files.py index 1d40304..7c2a53f 100644 --- a/pydrive/files.py +++ b/pydrive/files.py @@ -1,8 +1,8 @@ import io import mimetypes -from apiclient import errors -from apiclient.http import MediaIoBaseUpload +from googleapiclient import errors +from googleapiclient.http import MediaIoBaseUpload from functools import wraps from .apiattr import ApiAttribute