diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mahou_showtime.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/mahou_showtime.py b/modules/mahou_showtime.py index 60bae97..31dcc94 100644 --- a/modules/mahou_showtime.py +++ b/modules/mahou_showtime.py @@ -38,7 +38,8 @@ class Module: channel = tds[3].text airtime = tds[5].text eta = tds[6].text - return '%s airs on %s at %s (eta: %s)' % (title, channel, airtime, eta) + s = '%s airs on %s at %s (eta: %s)' % (title, channel, airtime, eta) + return s.encode('utf8') return 'No match found.' def keyword(self, nick, channel, kw, msg): |