Merge pull request #4 from subvillion/patch-1

fix: client.py sync_lib password escaping
This commit is contained in:
Maks Snegov 2023-10-18 09:21:00 -07:00 committed by GitHub
commit ca40cce9e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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