Skip to content

Commit

Permalink
Merge pull request #16 from ecmwf/develop
Browse files Browse the repository at this point in the history
debug SSHClient
  • Loading branch information
corentincarton authored Mar 8, 2024
2 parents d972822 + e342aac commit c517097
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "tracksuite"
version = "0.3.2"
version = "0.3.3"
description = "ecflow suite tracking and deploying toolkit"
authors = [
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "[email protected]" },
Expand Down
1 change: 0 additions & 1 deletion tracksuite/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def __init__(self, host, user, ssh_options=None):
def is_path(self, path):
# Build the ssh command
cmd = [f"[ -d {path} ] && exit 0 || exit 1"]
ret = self.exec(cmd)
try:
ret = self.exec(cmd)
return ret.returncode == 0
Expand Down

0 comments on commit c517097

Please sign in to comment.