Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | |
| 5 import os | |
| 4 import sys | 6 import sys |
| 5 | 7 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) |
|
aiolos (Not reviewing)
2015/11/06 18:15:21
Since this is an example, could you include a comm
nednguyen
2015/11/06 18:36:15
Done.
| |
| 6 from core import path_util | |
| 7 | |
| 8 sys.path.append(path_util.GetTelemetryDir()) | |
| OLD | NEW |