added DEL to the escaped characters

This commit is contained in:
jan6 2021-10-04 19:32:47 +03:00
parent 3ae614ddf8
commit 48a3dba154
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ class Util:
"\x1d": "\\x1d",
"\x1e": "\\x1e",
"\x1f": "\\x1f",
"\x7f": "\\x7f",
}
def send(self, raw: str):