| Index: client/cros/power_status.py
|
| diff --git a/client/common_lib/site_power_status.py b/client/cros/power_status.py
|
| similarity index 98%
|
| rename from client/common_lib/site_power_status.py
|
| rename to client/cros/power_status.py
|
| index 488aa562cc7f4e47643a5433c2c05bcf03818aa5..17a2358c357c8a8a341ee8104bd2a3238fe75cfd 100644
|
| --- a/client/common_lib/site_power_status.py
|
| +++ b/client/cros/power_status.py
|
| @@ -1,6 +1,6 @@
|
| import glob, logging, os, re, time
|
| -from autotest_lib.client.bin import utils as bin_utils
|
| -from autotest_lib.client.common_lib import error, utils
|
| +from autotest_lib.client.bin import utils
|
| +from autotest_lib.client.common_lib import error
|
|
|
|
|
| class DevStat(object):
|
| @@ -263,7 +263,7 @@ class CPUIdleStats(object):
|
| # currently not factored out.
|
|
|
| def __init__(self):
|
| - self._num_cpus = bin_utils.count_cpus()
|
| + self._num_cpus = utils.count_cpus()
|
| self._time = time.time()
|
| self._stats = self._read_stats()
|
|
|
|
|