| Index: third_party/google_api_python_client/sitecustomize.py
 | 
| diff --git a/third_party/google_api_python_client/sitecustomize.py b/third_party/google_api_python_client/sitecustomize.py
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..ef0f06376a5882c2790c856e57e46d7b47c813f7
 | 
| --- /dev/null
 | 
| +++ b/third_party/google_api_python_client/sitecustomize.py
 | 
| @@ -0,0 +1,12 @@
 | 
| +# Set up the system so that this development
 | 
| +# version of google-api-python-client is run, even if
 | 
| +# an older version is installed on the system.
 | 
| +#
 | 
| +# To make this totally automatic add the following to
 | 
| +# your ~/.bash_profile:
 | 
| +#
 | 
| +# export PYTHONPATH=/path/to/where/you/checked/out/googleapiclient
 | 
| +import sys
 | 
| +import os
 | 
| +
 | 
| +sys.path.insert(0, os.path.dirname(__file__))
 | 
| 
 |