summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2020-07-14 12:52:10 -0700
committerTim Burke <tim.burke@gmail.com>2020-07-14 12:52:10 -0700
commit4539128ffcbc7459b4a6a759b9654edf5312b4e3 (patch)
treebdd796846ea92ff20e5b6ca217ab087e4b9f76cd
parent31d474723c2118728cafee0517d7ad37da831682 (diff)
downloadswift-bench-4539128ffcbc7459b4a6a759b9654edf5312b4e3.tar.gz
py3: Fix sigint handler
Change-Id: I46c196c389f9425c398506a4abe4dd0abed7ade9
-rw-r--r--swiftbench/bench.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/swiftbench/bench.py b/swiftbench/bench.py
index 976c03a..8acce2d 100644
--- a/swiftbench/bench.py
+++ b/swiftbench/bench.py
@@ -386,9 +386,10 @@ class BenchController(object):
def sigint1(self, signum, frame):
if self.delete:
- print >>sys.stderr, (
+ print(
'SIGINT received; finishing up and running DELETE.\n'
- 'Send one more SIGINT to exit *immediately*.')
+ 'Send one more SIGINT to exit *immediately*.',
+ file=sys.stderr)
self.aborted = True
if self.running and not isinstance(self.running, BenchDELETE):
self.running.aborted = True