Skip to content

Commit 5fefec1

Browse files
committed
Enclose pattern in group
1 parent c1bac3f commit 5fefec1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsnip/parsnip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ def __repr__(self):
892892
"space_delimited_data": (
893893
r"("
894894
r"\;[^\;]*\;|" # Non-semicolon data bracketed by semicolons
895-
r"\'(?:(?:\\|O|d)'|[^'])*\'|" # Data with non-escaped single quotes
895+
r"\'(?:(?:[\\Od])'|[^'])*\'|" # Data with non-escaped single quotes
896896
r"\"[^\"]*\"|" # Data with double quotes
897897
r"[^\'\"\;\s]*" # Additional non-bracketed data
898898
r")[\s]*"

0 commit comments

Comments
 (0)