Fix escape sequence
This commit is contained in:
parent
2c5c87f555
commit
8ee868ab69
|
@ -84,7 +84,7 @@ def ConvertPassword(password):
|
|||
elif char == '"':
|
||||
password_string += "''"+'"'+"''"
|
||||
elif char == ';':
|
||||
password_string += "'"+"\;"+"'"
|
||||
password_string += "'"+r'\;'+"'"
|
||||
elif char == "\\":
|
||||
password_string += "'"+'"'+"\\"+"\\"+'"'+"'"
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue