Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.

Commit d69ce85

Browse files
committed
Fix a bug in SnapshotValueReader.name_esc.
1 parent c875656 commit d69ce85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/selfie-lib/selfie_lib/SnapshotValueReader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class SnapshotValueReader:
6262
KEY_START = "╔═ "
6363
KEY_END = " ═╗"
6464
FLAG_BASE64 = " ═╗ base64"
65-
name_esc = PerCharacterEscaper.specified_escape(r"\\[(])\nn\tt╔┌╗┐═─")
65+
name_esc = PerCharacterEscaper.specified_escape("\\\\[(])\nn\tt╔┌╗┐═─")
6666
body_esc = PerCharacterEscaper.self_escape("\uD801\uDF43\uD801\uDF41")
6767

6868
def __init__(self, line_reader: LineReader):

0 commit comments

Comments
 (0)