aboutsummaryrefslogtreecommitdiffstats
path: root/servo/management/commands/cron.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/management/commands/cron.py')
-rwxr-xr-xservo/management/commands/cron.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/servo/management/commands/cron.py b/servo/management/commands/cron.py
index eaed8bd..225a991 100755
--- a/servo/management/commands/cron.py
+++ b/servo/management/commands/cron.py
@@ -38,7 +38,7 @@ def send_table(sender, recipient, subject, table, send_empty=False):
settings.EMAIL_HOST_USER = config.get('smtp_user')
settings.EMAIL_HOST_PASSWORD = config.get('smtp_password')
- send_mail(subject, unicode(table), sender, [recipient], fail_silently=False)
+ send_mail(subject, str(table), sender, [recipient], fail_silently=False)
class Command(BaseCommand):