[lit] Use Python 3 style print to satisfy some bots

llvm-svn: 299564
This commit is contained in:
Reid Kleckner 2017-04-05 17:05:31 +00:00
parent 44047427b1
commit c33834e0e3
1 changed files with 1 additions and 1 deletions

View File

@ -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)