summaryrefslogtreecommitdiffstats
path: root/modules/tell.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tell.py')
-rwxr-xr-xmodules/tell.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/tell.py b/modules/tell.py
index 2f39986..741c58d 100755
--- a/modules/tell.py
+++ b/modules/tell.py
@@ -29,7 +29,8 @@ def loadReminders(fn):
for line in f:
line = line.strip()
if line:
- tellee, teller, verb, timenow, msg = line.split('\t', 4)
+ try: tellee, teller, verb, timenow, msg = line.split('\t', 4)
+ except ValueError: continue # @@ hmm
result.setdefault(tellee, []).append((teller, verb, timenow, msg))
f.close()
return result