Use `\\` instead of a single `\`
parent
26df2923fd
commit
17c11d482b
|
@ -11,7 +11,7 @@ def format_message(msg_format, *args):
|
|||
for char in chars_to_escape:
|
||||
arg = arg.replace(char, "\\" + char)
|
||||
|
||||
arg = re.sub(r"@(?!\s)", "\@", arg)
|
||||
arg = re.sub(r"@(?!\s)", "\\@", arg)
|
||||
string_format_args.append(arg)
|
||||
|
||||
msg = msg_format.format(*string_format_args)
|
||||
|
|
Loading…
Reference in New Issue