summaryrefslogtreecommitdiff
path: root/oslo_concurrency
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_concurrency')
-rw-r--r--oslo_concurrency/prlimit.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/oslo_concurrency/prlimit.py b/oslo_concurrency/prlimit.py
index 5f75910..f18222f 100644
--- a/oslo_concurrency/prlimit.py
+++ b/oslo_concurrency/prlimit.py
@@ -16,6 +16,7 @@
import argparse
import os
import resource
+import shutil
import sys
USAGE_PROGRAM = ('%s -m oslo_concurrency.prlimit'
@@ -74,12 +75,7 @@ def main():
if not os.path.isabs(program):
# program uses a relative path: try to find the absolute path
# to the executable
- if sys.version_info >= (3, 3):
- import shutil
- program_abs = shutil.which(program)
- else:
- import distutils.spawn
- program_abs = distutils.spawn.find_executable(program)
+ program_abs = shutil.which(program)
if program_abs:
program = program_abs