Skip to content

Commit 3dbdf33

Browse files
committed
incomplete backport in 049a739 caused an ssh regression
1 parent 1e96793 commit 3dbdf33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xpra/net/ssh/paramiko_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def safeget(key: str, default_value: str) -> Any:
253253
log(f"got host config for {host!r}: {host_config}")
254254
host = safeget("hostname", host)
255255
username = safeget("user", username)
256-
port = safeget("port", port)
256+
port = safeget("port", str(port))
257257
try:
258258
port = int(port)
259259
except (TypeError, ValueError):

0 commit comments

Comments
 (0)