Fix escape sequence
This commit is contained in:
@@ -84,7 +84,7 @@ def ConvertPassword(password):
|
||||
elif char == '"':
|
||||
password_string += "''"+'"'+"''"
|
||||
elif char == ';':
|
||||
password_string += "'"+"\;"+"'"
|
||||
password_string += "'"+r'\;'+"'"
|
||||
elif char == "\\":
|
||||
password_string += "'"+'"'+"\\"+"\\"+'"'+"'"
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user