diff options
Diffstat (limited to 'lldb/test/python_api/lldbutil/frame/TestFrameUtils.py')
-rw-r--r-- | lldb/test/python_api/lldbutil/frame/TestFrameUtils.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py b/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py index 28121365b75..90ceed2a29e 100644 --- a/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py +++ b/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py @@ -2,6 +2,8 @@ Test utility functions for the frame object. """ +from __future__ import print_function + import lldb_shared import os @@ -53,5 +55,5 @@ class FrameUtilsTestCase(TestBase): self.assertTrue(frame0_args and parent_args and "(int)val=1" in frame0_args) if self.TraceOn(): lldbutil.print_stacktrace(thread) - print "Current frame: %s" % frame0_args - print "Parent frame: %s" % parent_args + print("Current frame: %s" % frame0_args) + print("Parent frame: %s" % parent_args) |