Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions jsonpath_rw_ext/_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import jsonpath_rw


SUB = re.compile("sub\(/(.*)/,\s+(.*)\)")
SPLIT = re.compile("split\((.),\s+(\d+),\s+(\d+|-1)\)")
SUB = re.compile(r"sub\(/(.*)/,\s+(.*)\)")
SPLIT = re.compile(r"split\((.),\s+(\d+),\s+(\d+|-1)\)")


class DefintionInvalid(Exception):
Expand Down