We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 612f73e commit d3037e9Copy full SHA for d3037e9
iommi/query.py
@@ -935,7 +935,7 @@ def _create_grammar(self):
935
something < 10 AND other >= 2015-01-01 AND (foo < 1 OR bar > 1)
936
937
"""
938
- quoted_string_excluding_quotes = QuotedString('"', escChar='\\').setParseAction(
+ quoted_string_excluding_quotes = QuotedString('"', esc_char='\\').setParseAction(
939
lambda token: StringValue(token[0])
940
)
941
and_ = Keyword('and', caseless=True)
0 commit comments