From 8ee868ab695e2da3dc8ce7372dc9657a35fe26f5 Mon Sep 17 00:00:00 2001 From: Anton Samofal Date: Fri, 5 Apr 2024 11:18:39 +0000 Subject: [PATCH] Fix escape sequence --- sshch/sshch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshch/sshch b/sshch/sshch index 022169c..bd49390 100755 --- a/sshch/sshch +++ b/sshch/sshch @@ -84,7 +84,7 @@ def ConvertPassword(password): elif char == '"': password_string += "''"+'"'+"''" elif char == ';': - password_string += "'"+"\;"+"'" + password_string += "'"+r'\;'+"'" elif char == "\\": password_string += "'"+'"'+"\\"+"\\"+'"'+"'" else: