cli: Fix import paths to use cli/cros.

As part of the Brillo entry point, we're restructuring chromite/cros to
chromite/cli/cros instead. This CL just fixes module import paths to
point to the new location to make the restructuring functional.

See brbug.com/557 for more info.

BUG=brillo:557
TEST=cbuildbot/run_tests

Change-Id: I70c783f40e207090c5babf7ac149543613c8817e
Reviewed-on: https://chromium-review.googlesource.com/261183
Reviewed-by: David Pursell <dpursell@chromium.org>
Commit-Queue: David Pursell <dpursell@chromium.org>
Trybot-Ready: David Pursell <dpursell@chromium.org>
Tested-by: David Pursell <dpursell@chromium.org>
diff --git a/scripts/deploy_chrome.py b/scripts/deploy_chrome.py
index 7f778c2..2585a93 100644
--- a/scripts/deploy_chrome.py
+++ b/scripts/deploy_chrome.py
@@ -30,7 +30,7 @@
 
 from chromite.cbuildbot import constants
 from chromite.cbuildbot import failures_lib
-from chromite.cros.commands import cros_chrome_sdk
+from chromite.cli.cros import cros_chrome_sdk
 from chromite.lib import chrome_util
 from chromite.lib import commandline
 from chromite.lib import cros_build_lib
@@ -250,8 +250,8 @@
     dest_path = _CHROME_DIR
     if not self.device.HasRsync():
       raise DeployFailure(
-            'rsync is not found on the device.\n'
-            'Run dev_install on the device to get rsync installed')
+          'rsync is not found on the device.\n'
+          'Run dev_install on the device to get rsync installed')
     self.device.CopyToDevice('%s/' % os.path.abspath(self.staging_dir),
                              self.options.target_dir,
                              inplace=True, debug_level=logging.INFO,