diff options
Diffstat (limited to 'lldb/examples/python/file_extract.py')
-rwxr-xr-x | lldb/examples/python/file_extract.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/file_extract.py b/lldb/examples/python/file_extract.py index 7a617e91106..decbba0b299 100755 --- a/lldb/examples/python/file_extract.py +++ b/lldb/examples/python/file_extract.py @@ -29,7 +29,7 @@ class FileExtract: elif b == '<' or b == '>' or b == '@' or b == '=': self.byte_order = b else: - print "error: invalid byte order specified: '%s'" % b + print("error: invalid byte order specified: '%s'" % b) def is_in_memory(self): return False |