From 0fb8951b22e68f8fd4c5a9d6441aa0f5d038cfd2 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 15 Apr 2025 17:48:46 +0800 Subject: [PATCH] bugfix --- appPublic/sshx.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appPublic/sshx.py b/appPublic/sshx.py index 854249d..03ee364 100644 --- a/appPublic/sshx.py +++ b/appPublic/sshx.py @@ -372,11 +372,11 @@ class SshConnector: self.refconn = refconn async def r2l(self, rf, lf): - x = await asyncssh.scp((self.conn, rf), + x = await asyncssh.scp((self.conn, rf), lf, - preserve=True, + preserve=True, recurse=True) - return x + return x async def l2r(self, lf, rf): x = await asyncssh.scp(lf, (self.comm, rf),