Ensure Message superclass constructor is called
This commit is contained in:
parent
aa2c0b79dc
commit
5920b8e6c2
1 changed files with 2 additions and 0 deletions
|
@ -148,6 +148,8 @@ class Message(DatabaseTable):
|
|||
RE_HEADER = re.compile(r'^([A-Za-z0-9\-]+): (.*)$')
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
self._cache = dict()
|
||||
self._headers = None
|
||||
self._headers_lc = None
|
||||
|
|
Loading…
Add table
Reference in a new issue