summaryrefslogtreecommitdiffstats
path: root/tools/perf/perf_tools/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/perf_tools/__init__.py')
-rw-r--r--tools/perf/perf_tools/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/perf_tools/__init__.py b/tools/perf/perf_tools/__init__.py
index 525a274..9106907 100644
--- a/tools/perf/perf_tools/__init__.py
+++ b/tools/perf/perf_tools/__init__.py
@@ -6,9 +6,9 @@ import os
import sys
def Init():
- crc_path = os.path.join(os.path.dirname(__file__),
- '..', '..', 'chrome_remote_control')
- absolute_crc_path = os.path.abspath(crc_path)
- sys.path.append(absolute_crc_path)
+ telemetry_path = os.path.join(os.path.dirname(__file__),
+ '..', '..', 'telemetry')
+ absolute_telemetry_path = os.path.abspath(telemetry_path)
+ sys.path.append(absolute_telemetry_path)
Init()