Remove the config param

This commit is contained in:
2012-05-07 12:01:27 +01:00
parent 513119e588
commit d997c72242

View File

@@ -30,7 +30,7 @@ class OutputXMPP:
config.setdefault('nickname', 'FlexGet')
return config
def on_process_start(self, feed, config):
def on_process_start(self, feed):
try:
from xmpp import Client, Message, JID, Presence
except ImportError:
@@ -53,7 +53,7 @@ class OutputXMPP:
self.client.disconnect()
self.client = None
def on_feed_output(self, feed, config):
def on_feed_output(self, feed):
from xmpp import Client, Message, JID, Presence
config = self.get_config(feed)