diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-11-09 00:23:01 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-11-09 00:23:01 +0000 |
commit | 87f5e80614a265b07d53cbb3b0ccf23ad090382b (patch) | |
tree | 5eab3b4383eaa30ef88add77b744e10052a2773b /lldb/packages/Python/lldbsuite/test | |
parent | 188542fda91c92445a3c997b9e39ed91a9d6852c (diff) | |
download | bcm5719-llvm-87f5e80614a265b07d53cbb3b0ccf23ad090382b.tar.gz bcm5719-llvm-87f5e80614a265b07d53cbb3b0ccf23ad090382b.zip |
Fix up curses_results.py for new package specification requirement.
This was breaking but probably missed since it is currently
infrequently used.
llvm-svn: 252438
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/curses_results.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/curses_results.py b/lldb/packages/Python/lldbsuite/test/curses_results.py index e00e26556db..157bae4156b 100644 --- a/lldb/packages/Python/lldbsuite/test/curses_results.py +++ b/lldb/packages/Python/lldbsuite/test/curses_results.py @@ -17,13 +17,13 @@ import curses import datetime import math import sys -import test_results import time # Third-party modules # LLDB modules from . import lldbcurses +from . import test_results class Curses(test_results.ResultsFormatter): """Receives live results from tests that are running and reports them to the terminal in a curses GUI""" |