Add boilerplate and fix initialisation to match what 2.0 expects

This commit is contained in:
Jimmy Tang 2015-11-14 08:53:40 +00:00
parent c02ceb8f12
commit 5f2f5e2b59

View file

@ -52,6 +52,9 @@ Or create a logentries.ini config file that sites next to the plugin with the fo
"""
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import os
import socket
import random
@ -188,8 +191,8 @@ class CallbackModule(CallbackBase):
CALLBACK_TYPE = 'notification'
CALLBACK_NAME = 'logentries'
def __init__(self, display):
super(CallbackModule, self).__init__(display)
def __init__(self):
super(CallbackModule, self).__init__()
config_path = os.path.abspath(os.path.dirname(__file__))
config = ConfigParser.ConfigParser()