We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5abf2a commit 830b36dCopy full SHA for 830b36d
sshfs/config.py
@@ -45,5 +45,6 @@ def parse_config(*, host, user=(), port=(), local_user=None, config_files=None):
45
host,
46
port,
47
)
48
- config._options["ProxyCommand"] = config._options["ProxyCommand"].split()
+ if config._options.get("ProxyCommand", None):
49
+ config._options["ProxyCommand"] = config["ProxyCommand"].split()
50
return config
0 commit comments