mirror of
https://github.com/nvbn/thefuck.git
synced 2025-10-30 14:44:05 +00:00
#N/A: Use shutil.which when possible
This commit is contained in:
@@ -46,7 +46,11 @@ memoize.disabled = False
|
||||
@memoize
|
||||
def which(program):
|
||||
"""Returns `program` path or `None`."""
|
||||
try:
|
||||
from shutil import which
|
||||
|
||||
return which(program)
|
||||
except ImportError:
|
||||
def is_exe(fpath):
|
||||
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user