diff options
Diffstat (limited to 'lldb/test/progress.py')
-rwxr-xr-x | lldb/test/progress.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/test/progress.py b/lldb/test/progress.py index e35080bc5bc..f377e14eb8c 100755 --- a/lldb/test/progress.py +++ b/lldb/test/progress.py @@ -1,5 +1,7 @@ #!/usr/bin/python +from __future__ import print_function + import sys import time @@ -146,4 +148,4 @@ if __name__ == '__main__': time.sleep(0.3) if p.progress == 100: break - print #new line
\ No newline at end of file + print() #new line
\ No newline at end of file |