fix logging issue
parent
7faea22fe1
commit
03bad6ff1c
|
@ -105,9 +105,9 @@ class Bot(irc.bot.SingleServerIRCBot):
|
||||||
self.logger.exception('could not load plugin')
|
self.logger.exception('could not load plugin')
|
||||||
# gather all commands and listeners
|
# gather all commands and listeners
|
||||||
for cmd in pinhook.plugin.cmds:
|
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:
|
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):
|
def on_welcome(self, c, e):
|
||||||
if self.ns_pass:
|
if self.ns_pass:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -72,7 +72,7 @@ class UploadCommand(Command):
|
||||||
# Where the magic happens:
|
# Where the magic happens:
|
||||||
setup(
|
setup(
|
||||||
name=NAME,
|
name=NAME,
|
||||||
version='1.4.1b1',
|
version='1.4.1b2',
|
||||||
description=DESCRIPTION,
|
description=DESCRIPTION,
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
author=AUTHOR,
|
author=AUTHOR,
|
||||||
|
|
Loading…
Reference in New Issue