From 15b125d40122e966bd723d23e82c3224b1da4898 Mon Sep 17 00:00:00 2001 From: bsalomon Date: Fri, 16 Jan 2015 12:08:52 -0800 Subject: delete old things! NOTREECHECKS=true Review URL: https://codereview.chromium.org/855003006 --- gm/rebaseline_server/rs_fixpypath.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 gm/rebaseline_server/rs_fixpypath.py (limited to 'gm/rebaseline_server/rs_fixpypath.py') 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) -- cgit v1.2.3