diff options
-rw-r--r-- | modules/mahou_showtime.py | 2 | ||||
-rw-r--r-- | modules/tvrage.py | 2 |
2 files changed, 4 insertions, 0 deletions
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) |