summaryrefslogtreecommitdiffstats
path: root/askbot/mail/lamson_handlers.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/mail/lamson_handlers.py')
-rw-r--r--askbot/mail/lamson_handlers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/askbot/mail/lamson_handlers.py b/askbot/mail/lamson_handlers.py
index 8bfa86f7..65e5fde0 100644
--- a/askbot/mail/lamson_handlers.py
+++ b/askbot/mail/lamson_handlers.py
@@ -160,9 +160,9 @@ def process_reply(func):
received the notification.")
except Exception, e:
import sys
- sys.stderr.write(str(e))
+ sys.stderr.write(unicode(e).encode('utf-8'))
import traceback
- sys.stderr.write(traceback.format_exc())
+ sys.stderr.write(unicode(traceback.format_exc()).encode('utf-8'))
if error is not None:
template = get_template('email/reply_by_email_error.html')