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
Ubuntu 20.04 installs python3 by default.
When executing modsec-log-parser.py, error is raised:
File "./modsec-log-parser.py", line 50 for xx in summary.split(","): ^ TabError: inconsistent use of tabs and spaces in indentation
I tried to solve the error by replacing tabs with spaces, to no avail:
sed 's/\t/ /g' modsec-log-parser.py > modsec-log-parser.py3 ./modsec-log-parser.py3 --summary="uri,id,msg" /var/log/modsec_audit.log File "./modsec-log-parser.py3", line 62 print str(i) ^ IndentationError: expected an indented block
Please fix these indentations!
The text was updated successfully, but these errors were encountered:
yeah. i've tried this on debian11 with python3 and on os x with python 3 and getting the exact same results.
for xx in summary.split(","): TabError: inconsistent use of tabs and spaces in indentation
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Ubuntu 20.04 installs python3 by default.
When executing modsec-log-parser.py, error is raised:
I tried to solve the error by replacing tabs with spaces, to no avail:
Please fix these indentations!
The text was updated successfully, but these errors were encountered: