Fix replace
All checks were successful
lint / docker (push) Successful in 9m16s

This commit is contained in:
k3nny 2025-03-07 22:54:14 +01:00
parent b805f8387e
commit ddb5f3716d

View File

@ -68,7 +68,7 @@ class backup_mysql(backup_generic):
self.ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
self.ssh.connect(self.server_name, username="root", pkey=mykey, port=self.ssh_port)
self.db_passwd = self.db_passwd.replace("$", "\$")
self.db_passwd = self.db_passwd.replace("$", r"\$")
if not self.db_name:
stats["log"] = "Successfully backuping processed to the following databases :"
stats["status"] = "List"