Index: appengine_module/gae_ts_mon/third_party/__init__.py |
diff --git a/appengine_module/gae_ts_mon/third_party/__init__.py b/appengine_module/gae_ts_mon/third_party/__init__.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2aa5719ed0aa9a29ce72715e948b7e4985a2a38c |
--- /dev/null |
+++ b/appengine_module/gae_ts_mon/third_party/__init__.py |
@@ -0,0 +1,11 @@ |
+# Copyright 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+import os |
+import logging |
+import sys |
+ |
+third_party_dir = os.path.join(os.path.dirname(__file__), '..', 'third_party') |
+if third_party_dir not in sys.path: # pragma: no cover |
+ sys.path.insert(0, third_party_dir) |