summaryrefslogtreecommitdiffstats
path: root/lldb/utils/test/ras.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/utils/test/ras.py')
-rwxr-xr-xlldb/utils/test/ras.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/utils/test/ras.py b/lldb/utils/test/ras.py
index 25b76bc1e07..1b7caecdb0f 100755
--- a/lldb/utils/test/ras.py
+++ b/lldb/utils/test/ras.py
@@ -7,6 +7,8 @@ The code for sending of the directory is copied from
http://docs.python.org/library/email-examples.html.
"""
+from __future__ import print_function
+
import os
import sys
import shutil
@@ -33,7 +35,7 @@ def runTestsuite(testDir, sessDir, envs=None):
list = env.split('=')
var = list[0].strip()
val = list[1].strip()
- print var + "=" + val
+ print(var + "=" + val)
os.environ[var] = val
import shlex
OpenPOWER on IntegriCloud