From 36b99aafeac4eeaa5c9cb66382c6b85aa0d34f61 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Wed, 2 Jan 2019 10:03:32 +0100 Subject: [PATCH] allowing non ascii in workout comments --- rowers/tasks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rowers/tasks.py b/rowers/tasks.py index ece7a6a6..08191929 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -1738,6 +1738,8 @@ def handle_sendemailnewresponse(first_name, last_name, from_email = 'Rowsandall ' subject = 'New comment on workout ' + workoutname + comment = u''+comment + siteurl = SITE_URL if debug: siteurl = SITE_URL_DEV @@ -1775,6 +1777,8 @@ def handle_sendemailnewcomment(first_name, from_email = 'Rowsandall ' subject = 'New comment on workout ' + workoutname + comment = u''+comment + siteurl = SITE_URL if debug: siteurl = SITE_URL_DEV