| Index: appengine/findit_mock/appengine_config.py
|
| diff --git a/appengine/findit/appengine_config.py b/appengine/findit_mock/appengine_config.py
|
| similarity index 50%
|
| copy from appengine/findit/appengine_config.py
|
| copy to appengine/findit_mock/appengine_config.py
|
| index dcd090960e6962b5ce2cfd7704a6a83d176562a9..0e11d2cae2332c94aeed538e900acfb8966f6868 100644
|
| --- a/appengine/findit/appengine_config.py
|
| +++ b/appengine/findit_mock/appengine_config.py
|
| @@ -6,6 +6,8 @@ import os
|
|
|
| from google.appengine.ext import vendor
|
|
|
| -# Add all the third-party libraries.
|
| -vendor.add(
|
| - os.path.join(os.path.dirname(os.path.realpath(__file__)), 'third_party'))
|
| +_THIS_DIR = os.path.dirname(os.path.realpath(__file__))
|
| +
|
| +# Add all the first-party and thir-party libraries.
|
| +vendor.add(os.path.join(_THIS_DIR, 'first_party'))
|
| +vendor.add(os.path.join(_THIS_DIR, 'third_party'))
|
|
|