aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/rebaseline_server/rs_fixpypath.py
diff options
context:
space:
mode:
Diffstat (limited to 'gm/rebaseline_server/rs_fixpypath.py')
-rwxr-xr-xgm/rebaseline_server/rs_fixpypath.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/gm/rebaseline_server/rs_fixpypath.py b/gm/rebaseline_server/rs_fixpypath.py
deleted file mode 100755
index cc32f4a6bc..0000000000
--- a/gm/rebaseline_server/rs_fixpypath.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 ['common', 'gm', 'tools']:
- fullpath = os.path.join(TRUNK_DIRECTORY, subdir)
- if fullpath not in sys.path:
- sys.path.append(fullpath)