fix logging issue

pull/29/head
Mallory Hancock 2018-03-15 12:09:55 -07:00
parent 7faea22fe1
commit 03bad6ff1c
2 changed files with 3 additions and 3 deletions

View File

@ -105,9 +105,9 @@ class Bot(irc.bot.SingleServerIRCBot):
self.logger.exception('could not load plugin')
# gather all commands and listeners
for cmd in pinhook.plugin.cmds:
self.logger.debug('adding command {}'.format(cmd['cmd']))
self.logger.debug('adding command {}'.format(cmd))
for lstnr in pinhook.plugin.lstnrs:
self.logger.debug('adding listener {}'.format(lstnr['lstn']))
self.logger.debug('adding listener {}'.format(lstnr))
def on_welcome(self, c, e):
if self.ns_pass:

View File

@ -72,7 +72,7 @@ class UploadCommand(Command):
# Where the magic happens:
setup(
name=NAME,
version='1.4.1b1',
version='1.4.1b2',
description=DESCRIPTION,
long_description=long_description,
author=AUTHOR,