aboutsummaryrefslogtreecommitdiff
path: root/crosperf/schedv2.py
diff options
context:
space:
mode:
authorYunlian Jiang <yunlian@google.com>2015-12-09 10:47:11 -0800
committerchrome-bot <chrome-bot@chromium.org>2015-12-09 22:32:56 +0000
commit0d1a9f32c928e21a72547f3d334d631c5861f027 (patch)
tree7b95e8e6abf8caec638dd0e00ffd9b1108bf1904 /crosperf/schedv2.py
parent51d7a9b5663f6d3067baf06e2fc266265937f61f (diff)
downloadtoolchain-utils-0d1a9f32c928e21a72547f3d334d631c5861f027.tar.gz
crosperf: use cros_utils instead of utils.
We got some lint warnings about some module is not in utils. So we change the name. This CL creates a symbolic link cros_utils from utils. Once we are sure that we clean all the code, we can rename the utils to cros_utils directly. BUG=chromium:567921 chromium:568195 TEST=the lint warning is gone. Change-Id: I776e45c7bdd75d1f065ea5797f3bcff457203ca2 Reviewed-on: https://chrome-internal-review.googlesource.com/241457 Commit-Ready: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com> Reviewed-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'crosperf/schedv2.py')
-rw-r--r--crosperf/schedv2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/crosperf/schedv2.py b/crosperf/schedv2.py
index f33b30ad..46d5657b 100644
--- a/crosperf/schedv2.py
+++ b/crosperf/schedv2.py
@@ -11,8 +11,8 @@ from collections import defaultdict
from machine_image_manager import MachineImageManager
from threading import Lock
from threading import Thread
-from utils import command_executer
-from utils import logger
+from cros_utils import command_executer
+from cros_utils import logger
class DutWorker(Thread):