summaryrefslogtreecommitdiff
path: root/cts/cts.py
diff options
context:
space:
mode:
Diffstat (limited to 'cts/cts.py')
-rwxr-xr-xcts/cts.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cts/cts.py b/cts/cts.py
index 2999e4d06f..6a02b065bc 100755
--- a/cts/cts.py
+++ b/cts/cts.py
@@ -324,9 +324,9 @@ class Cts(object):
th_results = self.th.read_tty()
if not dut_results or not th_results:
- msg = ('Output missing from boards. If you have a process reading '
- 'ttyACMx, please kill that process and try again.')
- raise ValueError(bad_cat_message)
+ raise ValueError('Output missing from boards. If you have a process '
+ 'reading ttyACMx, please kill that process and try '
+ 'again.')
self.parse_output(dut_results, th_results)
pretty_results = self.prettify_results()