diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-03-25 21:35:39 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-03-25 21:38:04 +0800 |
commit | f77ee7e82e76a434625ce15cdbe5f8358e1617e2 (patch) | |
tree | ea1edccf1f81d4a3be5281d5774f5416f801ae7f /benchmarks/py-naarad/files/patch-2to3 | |
parent | audio/py-mpd: Fix build with setuptools 58.0.0+ (diff) |
benchmarks/py-naarad: Fix build with setuptools 58.0.0+
With hat: python
Diffstat (limited to 'benchmarks/py-naarad/files/patch-2to3')
-rw-r--r-- | benchmarks/py-naarad/files/patch-2to3 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmarks/py-naarad/files/patch-2to3 b/benchmarks/py-naarad/files/patch-2to3 new file mode 100644 index 000000000000..51ee552bbb8b --- /dev/null +++ b/benchmarks/py-naarad/files/patch-2to3 @@ -0,0 +1,9 @@ +--- src/naarad/run_steps/local_cmd.py.orig 2015-04-23 21:55:51 UTC ++++ src/naarad/run_steps/local_cmd.py +@@ -82,5 +82,5 @@ class Local_Cmd(Run_Step): + if self.process.poll() is None: + self.process.kill() + logger.warning('Waited %d seconds for run_step to terminate. Killing now....', CONSTANTS.SECONDS_TO_KILL_AFTER_SIGTERM) +- except OSError, e: ++ except OSError as e: + logger.error('Error while trying to kill the subprocess: %s', e) |