mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-22 01:49:02 +02:00
Correctly handle \_ escape sequence. (#89)
This commit is contained in:
parent
02ecc0ca9d
commit
a90c696589
5 changed files with 18 additions and 15 deletions
|
@ -21,7 +21,7 @@ ESCAPE_SEQUENCES = {
|
|||
b'\\': b'\\',
|
||||
b'?': b'?',
|
||||
b'$': b'$',
|
||||
b'_': b'_',
|
||||
b'_': b' ',
|
||||
b'a': b'\a',
|
||||
b'b': b'\b',
|
||||
b'f': b'\xFF',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue