mirror of
https://github.com/nvbn/thefuck.git
synced 2025-04-20 17:50:45 +01:00
#N/A: Use shutil.which
when possible
This commit is contained in:
parent
28d078708b
commit
bbfd53d718
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user