diff options
Diffstat (limited to 'lldb/examples/python/jump.py')
-rw-r--r-- | lldb/examples/python/jump.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/examples/python/jump.py b/lldb/examples/python/jump.py index e33a6a6f369..dc4cc48b144 100644 --- a/lldb/examples/python/jump.py +++ b/lldb/examples/python/jump.py @@ -1,3 +1,5 @@ +from __future__ import print_function + import lldb import re @@ -193,4 +195,4 @@ if lldb.debugger: # Module is being run inside the LLDB interpreter jump.__doc__ = usage_string() lldb.debugger.HandleCommand('command script add -f jump.jump jump') - print 'The "jump" command has been installed, type "help jump" or "jump <ENTER>" for detailed help.' + print('The "jump" command has been installed, type "help jump" or "jump <ENTER>" for detailed help.') |