Fixed wrong join operator for emails

This commit is contained in:
Shalabh Aggarwal 2012-09-16 11:18:01 +05:30
parent f7a4a7c356
commit 643148853b
1 changed files with 1 additions and 1 deletions

View File

@ -1256,7 +1256,7 @@ class ProjectHistory(ModelSQL, ModelView):
message = render_email(
from_email=CONFIG['smtp_from'],
to='.'.join(receivers),
to=', '.join(receivers),
subject=subject,
text_template='project/emails/text_content.jinja',
html_template='project/emails/html_content.jinja',