diff options
author | Serge Guelton <sguelton@redhat.com> | 2019-03-21 18:27:40 +0000 |
---|---|---|
committer | Serge Guelton <sguelton@redhat.com> | 2019-03-21 18:27:40 +0000 |
commit | 525cd59f5a12254e80d5f20bf2d9713728a114d4 (patch) | |
tree | bb174d21b449a016712aa1867fdbdff781b34b15 /lldb/utils/lui/lui.py | |
parent | 05ea3a6be3ba172e8824a8fb66b799b3cc2c72f3 (diff) | |
download | bcm5719-llvm-525cd59f5a12254e80d5f20bf2d9713728a114d4.tar.gz bcm5719-llvm-525cd59f5a12254e80d5f20bf2d9713728a114d4.zip |
Python 2/3 compatibility: from __future__ import print_function
Differential Revision: https://reviews.llvm.org/D59580
llvm-svn: 356695
Diffstat (limited to 'lldb/utils/lui/lui.py')
-rwxr-xr-x | lldb/utils/lui/lui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/utils/lui/lui.py b/lldb/utils/lui/lui.py index c7c38d7ea09..4f72b43d103 100755 --- a/lldb/utils/lui/lui.py +++ b/lldb/utils/lui/lui.py @@ -54,7 +54,7 @@ def handle_args(driver, argv): pid = int(options.pid) driver.attachProcess(ui, pid) except ValueError: - print "Error: expecting integer PID, got '%s'" % options.pid + print("Error: expecting integer PID, got '%s'" % options.pid) elif options.core is not None: if not os.path.exists(options.core): raise Exception( |