aboutsummaryrefslogtreecommitdiff
path: root/crosperf/machine_manager.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/machine_manager.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/machine_manager.py')
-rw-r--r--crosperf/machine_manager.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/crosperf/machine_manager.py b/crosperf/machine_manager.py
index 1f43dfc5..c85c55b2 100644
--- a/crosperf/machine_manager.py
+++ b/crosperf/machine_manager.py
@@ -15,10 +15,10 @@ import threading
import time
-from utils import command_executer
-from utils import logger
-from utils import misc
-from utils.file_utils import FileUtils
+from cros_utils import command_executer
+from cros_utils import logger
+from cros_utils import misc
+from cros_utils.file_utils import FileUtils
CHECKSUM_FILE = "/usr/local/osimage_checksum_file"