summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py')
-rw-r--r--lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
index dd7c79971e8..582e60ebe2c 100644
--- a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
+++ b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
@@ -2,6 +2,8 @@
Test watchpoint condition API.
"""
+from __future__ import print_function
+
import lldb_shared
import os, time
@@ -71,7 +73,7 @@ class WatchpointConditionAPITestCase(TestBase):
if not self.TraceOn():
self.HideStdout()
- print watchpoint
+ print(watchpoint)
# Continue. Expect the program to stop due to the variable being written to.
process.Continue()
OpenPOWER on IntegriCloud