commit | 14768813d90a8729c76350fb6f4861a07e4cc86b | [log] [tgz] |
---|---|---|
author | beeps <[email protected]> | Wed Sep 25 12:58:45 2013 -0700 |
committer | chrome-internal-fetch <[email protected]> | Wed Sep 25 22:54:03 2013 +0000 |
tree | d61d839c48ad2e8c9de38d6623f35cd508c8e0db | |
parent | 84ca90d73e3e4383e0a6084e373bca2869c631fd [diff] |
[autotest] Fix error message in autotest.py TEST=Threw and exception. BUG=None Change-Id: I548d1afb936ad9f6e6e2580833c47f9dbb1f4aa6 Reviewed-on: https://chromium-review.googlesource.com/170569 Tested-by: Prashanth B <[email protected]> Commit-Queue: Prashanth B <[email protected]> Reviewed-by: Aviv Keshet <[email protected]>
diff --git a/server/autotest.py b/server/autotest.py index 2199ed1..2cac5b1 100644 --- a/server/autotest.py +++ b/server/autotest.py
@@ -647,7 +647,7 @@ new_boot_id = self.host.get_boot_id(timeout=60) except Exception as e: msg += ('DUT is pingable but not SSHable, it most likely' - ' sporadically rebooted during testing. %s\n', str(e)) + ' sporadically rebooted during testing. %s\n' % str(e)) raise AutotestDeviceNotSSHable(msg) else: if new_boot_id != old_boot_id: