Little fix to topic method
This commit is contained in:
parent
1384d1976f
commit
2451fdd40a
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ class ModuleManager:
|
||||||
def topic(self, room, nick, text, handler):
|
def topic(self, room, nick, text, handler):
|
||||||
for mod in self._modules.itervalues():
|
for mod in self._modules.itervalues():
|
||||||
try:
|
try:
|
||||||
mod.leave(room, nick, text, handler)
|
mod.topic(room, nick, text, handler)
|
||||||
except:
|
except:
|
||||||
handler.reply(traceback.format_exc(5))
|
handler.reply(traceback.format_exc(5))
|
||||||
|
|
||||||
|
|
Reference in a new issue