Skip to content

Commit

Permalink
coretasks: fix a missing plugin.label
Browse files Browse the repository at this point in the history
  • Loading branch information
Exirel committed Jul 15, 2020
1 parent 914734b commit 0d6f8ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sopel/coretasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import sys
import time

from sopel import loader, module
from sopel import loader, module, plugin
from sopel.irc import isupport
from sopel.irc.utils import CapReq, MyInfo
from sopel.tools import events, Identifier, iteritems, target, web
Expand All @@ -47,7 +47,7 @@ def setup(bot):
wait_interval = max(bot.settings.core.throttle_wait, 1)

@module.interval(wait_interval)
@module.label('throttle_join')
@plugin.label('throttle_join')
def processing_job(bot):
_join_event_processing(bot)

Expand Down

0 comments on commit 0d6f8ec

Please sign in to comment.