浏览代码

More robust command check

Use shutil.which instead of subprocess.call()
pull/559/head
Elie KADOCHE 4 年前
committed by Guillaume Vincent
父节点
当前提交
4ac0105a66
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      cli/lesspass/clipboard.py

+ 2
- 1
cli/lesspass/clipboard.py 查看文件

@@ -1,5 +1,6 @@
import os
import platform
import shutil
import subprocess
import uuid

@@ -11,7 +12,7 @@ def _call(args):
def _copy_available(command):
if platform.system() == "Windows":
return _call(["where", command]) == 0
return _call(["which", command]) == 0
return shutil.which(command) is not None


def get_system_copy_command():


正在加载...
取消
保存