forked from OSchip/llvm-project
[lit] Use Python 3 style print to satisfy some bots
llvm-svn: 299564
This commit is contained in:
parent
44047427b1
commit
c33834e0e3
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue