Upgrade to googleapiclient 1.5.1

This commit is contained in:
Jay Lee
2016-08-20 16:46:12 -04:00
parent 219509853f
commit a1b2e3b63b
7 changed files with 150 additions and 49 deletions

View File

@@ -19,6 +19,9 @@ from __future__ import absolute_import
import logging
import datetime
LOGGER = logging.getLogger(__name__)
DISCOVERY_DOC_MAX_AGE = 60 * 60 * 24 # 1 day
@@ -38,5 +41,5 @@ def autodetect():
from . import file_cache
return file_cache.cache
except Exception as e:
logging.warning(e, exc_info=True)
LOGGER.warning(e, exc_info=True)
return None