From fe63cfb9ee052589a166704d06ae97a3c44841bc Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Wed, 9 Jun 2010 01:19:38 +0200 Subject: Add missing calls in keyword handlers for tvrage and mahou showtime. --- modules/mahou_showtime.py | 2 ++ modules/tvrage.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/modules/mahou_showtime.py b/modules/mahou_showtime.py index ee4e387..7e3dba6 100644 --- a/modules/mahou_showtime.py +++ b/modules/mahou_showtime.py @@ -46,6 +46,8 @@ class Module: self.irc.msg(target, 'Usage: !ep search') return + self.irc.msg(target, self.find_next(' '.join(args))) + if __name__ == '__main__': import sys m = Module(None) diff --git a/modules/tvrage.py b/modules/tvrage.py index cd8ee8f..51263dd 100644 --- a/modules/tvrage.py +++ b/modules/tvrage.py @@ -73,6 +73,8 @@ class Module: self.irc.msg(target, 'Usage: !tv search') return + self.irc.msg(target, self.find_show(' '.join(args))) + if __name__ == '__main__': import sys m = Module(None) -- cgit v1.2.3