Fix an invalid escape sequence warning

This commit is contained in:
Robin Dunn
2021-01-20 13:10:33 -08:00
parent 3d4155395b
commit c3d4881bfd

View File

@@ -3761,7 +3761,7 @@ def GetNotebookRoot(panes, notebook_id):
def EscapeDelimiters(s):
"""
Changes ``;`` into ``\`` and ``|`` into ``\|`` in the input string.
Changes ``;`` into ``\\`` and ``|`` into ``|\\`` in the input string.
:param string `s`: the string to be analyzed.