diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2010-11-19 15:02:28 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2010-11-19 15:02:28 +0100 |
commit | 35861ed5bf39158254d3e86cc1308c4f00d40c7d (patch) | |
tree | 5cca8f3fd59695315ce4e79041fae1400c779800 /modules | |
parent | 28ed89a19c2cc57652ffc2c38041ed684cf0a55e (diff) |
mahou_showtime: Changed 'at' to 'on' before airtime.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mahou_showtime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mahou_showtime.py b/modules/mahou_showtime.py index e4deefa..184b9f0 100644 --- a/modules/mahou_showtime.py +++ b/modules/mahou_showtime.py @@ -40,7 +40,7 @@ class Module: channel = tds[3].contents[0] airtime = tds[5].contents[0] eta = tds[6].contents[0].strip() - s = '%s airs on %s at %s (eta: %s)' % (title, channel, airtime, eta) + s = '%s airs on %s on %s (eta: %s)' % (title, channel, airtime, eta) return s.encode('utf8') return 'No match found.' |