mirror of
https://github.com/nikdoof/flexget-plugins.git
synced 2025-12-13 05:12:15 +00:00
Remove the config param
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user