We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
find . -iname '*.py' | xargs -P 4 -I{} python3.8 -Wall -m py_compile {} ./tests/test_pygrok.py:89: DeprecationWarning: invalid escape sequence \[ pat = '%{HOSTNAME:host} %{IP:client_ip} %{NUMBER:delay}s - \[%{DATA:time_stamp}\]' \ ./pygrok/pygrok.py:85: DeprecationWarning: invalid escape sequence \w if re.search('%{\w+(:\w+)?}', py_regex_pattern) is None:
The text was updated successfully, but these errors were encountered:
Looks like that line is missing the leading r to make it a literal. All of these other lines already have the r:
r
pygrok/pygrok/pygrok.py
Line 70 in de9e3f9
Line 76 in de9e3f9
Line 81 in de9e3f9
It's an easy fix
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: