Skip to content

Commit d3037e9

Browse files
committed
Fixed deprecated use of escChar in pypyarsing
1 parent 612f73e commit d3037e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iommi/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ def _create_grammar(self):
935935
something < 10 AND other >= 2015-01-01 AND (foo < 1 OR bar > 1)
936936
937937
"""
938-
quoted_string_excluding_quotes = QuotedString('"', escChar='\\').setParseAction(
938+
quoted_string_excluding_quotes = QuotedString('"', esc_char='\\').setParseAction(
939939
lambda token: StringValue(token[0])
940940
)
941941
and_ = Keyword('and', caseless=True)

0 commit comments

Comments
 (0)