diff --git a/tools/impl/common.py b/tools/impl/common.py index 074c2cecd8..9baffd85dd 100644 --- a/tools/impl/common.py +++ b/tools/impl/common.py @@ -126,7 +126,7 @@ class Command(object): self.env_vars = env_vars if len(self.args) > 0: executable = self.args[0] - if Path(executable).exists: + if Path(executable).exists(): self.executable = Path(executable) else: path = shutil.which(executable)