diff --git a/pinhook/bot.py b/pinhook/bot.py index e07fa34..771b753 100644 --- a/pinhook/bot.py +++ b/pinhook/bot.py @@ -154,7 +154,7 @@ class Bot(irc.bot.SingleServerIRCBot): c.quit("See y'all later!") quit() elif cmd == '!help': - helplist = sorted([i for i in self.cmds]) + helplist = sorted([i for i in pinhook.plugin.cmds]) msg = ', '.join(helplist) c.privmsg(chan, 'Available commands: {}'.format(msg)) elif cmd == '!reload' and nick in self.ops: diff --git a/setup.py b/setup.py index 48b4926..028a977 100755 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ class UploadCommand(Command): # Where the magic happens: setup( name=NAME, - version='1.4.1', + version='1.4.2', description=DESCRIPTION, long_description=long_description, author=AUTHOR,