mirror of
https://github.com/markqvist/NomadNet.git
synced 2024-12-26 23:59:26 -05:00
Fixed missing escape parsing for backslashes
This commit is contained in:
parent
c276c29cd0
commit
72cfab3bd2
@ -480,7 +480,11 @@ def make_output(state, line, url_delegate):
|
||||
|
||||
elif mode == "text":
|
||||
if c == "\\":
|
||||
escape = True
|
||||
if escape:
|
||||
part += c
|
||||
escape = False
|
||||
else:
|
||||
escape = True
|
||||
elif c == "`":
|
||||
if escape:
|
||||
part += c
|
||||
|
Loading…
Reference in New Issue
Block a user