summaryrefslogtreecommitdiff
path: root/modules/tvrage.py
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2010-06-09 17:33:35 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2010-06-09 17:33:35 +0200
commit25096a81665435a3a6f630315af9b5fcdb45973a (patch)
tree2179c0849bc5d5be5740218d1cb4d3a457e9fafe /modules/tvrage.py
parent92bdc9b3d0b54eb36ec166c7d1e27e269eab2c99 (diff)
Changed format string used when no air date is found.
Diffstat (limited to 'modules/tvrage.py')
-rw-r--r--modules/tvrage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tvrage.py b/modules/tvrage.py
index 05a5fa0..02675cb 100644
--- a/modules/tvrage.py
+++ b/modules/tvrage.py
@@ -44,7 +44,7 @@ class Module:
data['Next Episode'][2],
data['Airtime'][0])
else:
- return 'Can''t find airing date for \002%s\002.' % data['Show Name'][0]
+ return '\002%s\002 does not yet air.' % data['Show Name'][0]
# TODO: Fetch this from somewhere user-configurable
local_tz = pytz.timezone('Europe/Oslo')