Index: tools/tests/fix_pythonpath.py |
diff --git a/tools/tests/fix_pythonpath.py b/tools/tests/fix_pythonpath.py |
deleted file mode 100755 |
index a746a18937727557ab44058e9dc7b3f210fefcd6..0000000000000000000000000000000000000000 |
--- a/tools/tests/fix_pythonpath.py |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-#!/usr/bin/python |
- |
-""" |
-Copyright 2014 Google Inc. |
- |
-Use of this source code is governed by a BSD-style license that can be |
-found in the LICENSE file. |
- |
-Adds possibly-needed directories to PYTHONPATH, if they aren't already there. |
-""" |
- |
-import os |
-import sys |
- |
-TRUNK_DIRECTORY = os.path.abspath(os.path.join( |
- os.path.dirname(__file__), os.pardir, os.pardir)) |
-for subdir in ['tools']: |
- fullpath = os.path.join(TRUNK_DIRECTORY, subdir) |
- if fullpath not in sys.path: |
- sys.path.append(fullpath) |