Skip to content
Snippets Groups Projects
Commit 509585f1 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Removed useless unicode marker.

parent e3140c53
No related branches found
No related tags found
No related merge requests found
......@@ -30,10 +30,10 @@ if __name__ == '__main__':
settings.configure(**config.__dict__)
from django.core.mail import send_mail
send_mail(
u'The system %s did not correctly mount home partition' % socket.gethostname(),
u'Date: %s' % datetime.datetime.now(),
u'"%s" <support@ubicast.eu>' % socket.gethostname(),
[u'"Support" <support@ubicast.eu>'],
'The system %s did not correctly mount home partition' % socket.gethostname(),
'Date: %s' % datetime.datetime.now(),
'"%s" <support@ubicast.eu>' % socket.gethostname(),
['"Support" <support@ubicast.eu>'],
fail_silently=True
)
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment