Merge pull request #4 from subvillion/patch-1

fix: client.py sync_lib password escaping
This commit is contained in:
2023-10-18 09:21:00 -07:00
committed by GitHub

View File

@@ -107,7 +107,7 @@ class SeafileClient:
"-s", self.url,
"-d", lib_dir,
"-u", self.user,
"-p", self.password,
"-p", '"' + self.password + '"',
]
_lg.info(
"Syncing library %s: %s", lib_name,