summaryrefslogtreecommitdiffstats
path: root/modules/tell.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tell.py')
-rwxr-xr-xmodules/tell.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/tell.py b/modules/tell.py
index 3b487c8..e4af264 100755
--- a/modules/tell.py
+++ b/modules/tell.py
@@ -59,6 +59,10 @@ def f_remind(phenny, input):
# @@ Multiple comma-separated tellees? Cf. Terje, #swhack, 2006-04-15
verb, tellee, msg = input.groups()
+ verb = verb.encode('utf-8')
+ tellee = tellee.encode('utf-8')
+ msg = msg.encode('utf-8')
+
tellee_original = tellee.rstrip(',:;')
tellee = tellee.lower()