From 3f58a16d8eec385e2b3ebdfbb84ff9d3bf27e025 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Wed, 5 Apr 2017 17:05:31 +0000 Subject: [PATCH] [lit] Use Python 3 style print to satisfy some bots git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299564 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/lit/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/lit/lit/run.py b/utils/lit/lit/run.py index 10f21c7b2e8..75942390108 100644 --- a/utils/lit/lit/run.py +++ b/utils/lit/lit/run.py @@ -359,7 +359,7 @@ class Run(object): # Install a console-control signal handler on Windows. if win32api is not None: def console_ctrl_handler(type): - print "Ctr-C received, terminating" + print('\nCtrl-C detected, terminating.') pool.terminate() pool.join() os.kill(0,9) -- 2.50.1