blob: e51cffdb69c30bfb4daab97dfda965e439881d9a [file] [log] [blame]
xixuan2a0970a2016-08-10 12:12:44 -07001# Copyright (c) 2016 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import os
6import sys
7
8# Make sure that chromite is available to import.
9_path = os.path.join(os.path.dirname(__file__), os.pardir, os.pardir,
10 os.pardir)
11if _path not in sys.path:
12 sys.path.insert(0, os.path.abspath(_path))
13
14del _path