From 5d1073bd72c0dc08d5639fecb208549116b4e7f4 Mon Sep 17 00:00:00 2001
From: Steffen Vogel <post@steffenvogel.de>
Date: Wed, 28 Apr 2021 16:50:55 +0200
Subject: [PATCH] fix broken port

---
 python/src/jupyter_remote_spawn/sshfs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/src/jupyter_remote_spawn/sshfs.py b/python/src/jupyter_remote_spawn/sshfs.py
index 98b964b..fa1dfee 100644
--- a/python/src/jupyter_remote_spawn/sshfs.py
+++ b/python/src/jupyter_remote_spawn/sshfs.py
@@ -27,7 +27,7 @@ class Sshfs:
             return
 
         options = {
-            'directport': port,
+            'directport': self.port,
             'cache': True,
             'cache_max_size': 536870912, # 512 MiB
             'cache_timeout': 60,
-- 
GitLab