Skip to content

Commit

Permalink
[core] Remove unblockable from commands in coretasks.
Browse files Browse the repository at this point in the history
Unblockable was meant for functions that keep track of events.
  • Loading branch information
ari-koivula committed Aug 29, 2013
1 parent 89e5233 commit 93f03e0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions willie/coretasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ def retry_join(bot, trigger):


@willie.module.commands('newoplist')
@willie.module.unblockable
def refresh_list(bot, trigger):
''' If you need to use this, then it means you found a bug '''
if trigger.admin:
Expand All @@ -91,7 +90,6 @@ def refresh_list(bot, trigger):


@willie.module.commands('listops')
@willie.module.unblockable
def list_ops(bot, trigger):
"""
List channel operators in the given channel, or current channel if none is
Expand All @@ -103,7 +101,6 @@ def list_ops(bot, trigger):


@willie.module.commands('listvoices')
@willie.module.unblockable
def list_voices(bot, trigger):
"""
List users with voice in the given channel, or current channel if none is
Expand Down

0 comments on commit 93f03e0

Please sign in to comment.