Sun, 19 Apr 2015 19:45:42 +0300
- added commits.db and mercurial support restructure
- added new, from-scratch calculator for .calc
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'])