summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2010-05-09 21:52:09 +0200
committerMatthias Schiffer <matthias@gamezock.de>2010-05-09 21:52:09 +0200
commit2451fdd40a873c3eada5b0689b55b35cd63e5277 (patch)
tree9767fe8c964febfb9fb7bac550dda1b0e4b84718
parent1384d1976fa984b6b254c93677363f67944c0c7a (diff)
downloadcurunir-2451fdd40a873c3eada5b0689b55b35cd63e5277.tar
curunir-2451fdd40a873c3eada5b0689b55b35cd63e5277.zip
Little fix to topic method
-rw-r--r--curunir.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/curunir.py b/curunir.py
index 5383fe3..824a7c6 100644
--- a/curunir.py
+++ b/curunir.py
@@ -48,7 +48,7 @@ class ModuleManager:
def topic(self, room, nick, text, handler):
for mod in self._modules.itervalues():
try:
- mod.leave(room, nick, text, handler)
+ mod.topic(room, nick, text, handler)
except:
handler.reply(traceback.format_exc(5))