Sat, 29 Nov 2014 17:03:10 +0200
- no need to post the commit message on FIXES irc notifications since the commit is posted anyway
from modulecore import command_error from configfile import Config import hgapi ModuleData = { 'commands': [ { 'name': 'addchan', 'description': 'Adds a channel to config', 'args': '<channel>', 'level': 'admin', }, { 'name': 'delchan', 'description': 'Deletes a channel from config', 'args': '<channel>', 'level': 'admin', }, ] } def cmd_addchan (bot, args, **rest): bot.add_irc_channel (args['channel']) def cmd_delchan (bot, args, **rest): bot.remove_irc_channel (args['channel'])