Skip to content

Commit 68cebed

Browse files
committed
Remove excess backslash for line separator
1 parent f4af7af commit 68cebed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ fun PythonTree.PythonTreeNode.toMemoryObject(memoryDump: MemoryDump, reload: Boo
111111
id,
112112
typeinfo,
113113
this.comparable,
114-
this.repr.replace("\n", "\\\n").replace("\r", "\\\r")
114+
this.repr.replace("\n", "\\n").replace("\r", "\\r")
115115
)
116116
}
117117

0 commit comments

Comments
 (0)