We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 839b3ad commit 9089d01Copy full SHA for 9089d01
sentrylogs/parsers/__init__.py
@@ -14,7 +14,7 @@
14
PermissionError = IOError # pylint: disable=redefined-builtin
15
16
17
-class Parser:
+class Parser(object): # pylint: disable=useless-object-inheritance
18
"""Abstract base class for any parser"""
19
20
def __init__(self, filepath):
sentrylogs/parsers/nginx.py
@@ -11,6 +11,8 @@
11
host: "165.225.132.103",
12
referrer: "http://165.225.132.103/megapage/"
13
"""
+from __future__ import print_function
+
import re
import sys
0 commit comments