| Index: client/third_party/google/auth/__init__.py
 | 
| diff --git a/client/third_party/googleapiclient/__init__.py b/client/third_party/google/auth/__init__.py
 | 
| similarity index 65%
 | 
| copy from client/third_party/googleapiclient/__init__.py
 | 
| copy to client/third_party/google/auth/__init__.py
 | 
| index ceeae8d19d45eb117305a399e144749649fdb216..65e13951ca4800c295170b6f758184fbfb9f3106 100644
 | 
| --- a/client/third_party/googleapiclient/__init__.py
 | 
| +++ b/client/third_party/google/auth/__init__.py
 | 
| @@ -1,4 +1,4 @@
 | 
| -# Copyright 2014 Google Inc. All Rights Reserved.
 | 
| +# Copyright 2016 Google Inc.
 | 
|  #
 | 
|  # Licensed under the Apache License, Version 2.0 (the "License");
 | 
|  # you may not use this file except in compliance with the License.
 | 
| @@ -12,4 +12,17 @@
 | 
|  # See the License for the specific language governing permissions and
 | 
|  # limitations under the License.
 | 
|  
 | 
| -__version__ = "1.4.2"
 | 
| +"""Google Auth Library for Python."""
 | 
| +
 | 
| +import logging
 | 
| +
 | 
| +from google.auth._default import default
 | 
| +
 | 
| +
 | 
| +__all__ = [
 | 
| +    'default',
 | 
| +]
 | 
| +
 | 
| +
 | 
| +# Set default logging handler to avoid "No handler found" warnings.
 | 
| +logging.getLogger(__name__).addHandler(logging.NullHandler())
 | 
| 
 |